/* General Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #f4f4f4;
    --text-color: #333;
    --light-text: #fff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding-top: 70px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 70px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section Styles */
.hero {
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-benefits {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-benefits li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.hero .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Section Styles */
.benefits, .services, .testimonials, .contact {
    padding: 4rem 0;
}

section {
    scroll-margin-top: 70px;
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.benefit-item {
    flex-basis: calc(25% - 30px);
    margin: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: white;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-item {
    flex-basis: calc(33.333% - 30px);
    margin: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: #e9e9e9;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
}

.testimonial {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial img {
    border-radius: 50%;
    margin-right: 20px;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #45a049;
}

.privacy-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    header {
        height: 60px;
    }

    .logo-image {
        height: 40px;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    header .cta-button {
        display: none;
    }

    .hero {
        background-position: left center;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    .hero-benefits li {
        font-size: 1rem;
    }

    .hero .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .benefit-item, .service-item {
        flex-basis: calc(50% - 30px);
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-item, .service-item {
        flex-basis: 100%;
    }
}
/* Add these styles to your existing style.css file */

/* Calculator Section */
.calculator {
    background-color: var(--secondary-color);
    padding: 4rem 0;
}

.calculator h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.toggle-group {
    margin-bottom: 1.5rem;
}

.toggle-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.result {
    margin-top: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.result h2 {
    margin-bottom: 1rem;
}

.result p {
    margin-bottom: 0.5rem;
}

.result .disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.error {
    color: #d32f2f;
    font-weight: bold;
}

.calculator-intro {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.calculator-intro h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.calculator-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.calculator-intro ol {
    padding-left: 20px;
}

.calculator-intro li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .calculator-intro {
        padding: 15px;
    }

    .calculator-intro h2 {
        font-size: 1.3rem;
    }
}

/* Secondary CTA Button */
.secondary-cta {
    background-color: #ff9800;
    margin-left: 1rem;
}

.secondary-cta:hover {
    background-color: #f57c00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .calculator-form {
        padding: 1.5rem;
    }

    .hero .cta-button,
    .hero .secondary-cta {
        display: block;
        margin: 1rem 0;
    }
}