:root {
    --primary-color: #007bff; /* Blue for buttons and highlights */
    --secondary-color: #28a745; /* Green for success/CTA buttons */
    --text-color: #333;
    --background-light: #f8f9fa;
    --background-dark: #343a40;
    --white: #fff;
    --font-family: 'Inter', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header/Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.hero-section .container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    align-items: center;
    justify-content: space-around;
}

.hero-content {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    padding: 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    padding: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.primary-button {
    background-color: var(--secondary-color);
    color: var(--white);
}

.primary-button:hover {
    background-color: #218838; /* Darker green on hover */
}

.secondary-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Features Section */
.features-section {
    padding: 40px 0;
    background-color: var(--white);
    text-align: center;
}

.features-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    margin: 20px;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Call to Action Section */
.call-to-action-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.call-to-action-section h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content, .hero-image {
        text-align: center;
        width: 100%;
        min-width: unset; /* Remove min-width for smaller screens */
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .features-section .container {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 90%;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .call-to-action-section h2 {
        font-size: 2em;
    }
}