body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/wy-bg.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    margin-bottom: 2rem;
}

.hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.header-image {
    max-width: 300px;
    height: auto;
}

.address-inputs {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.address-inputs input,
.address-inputs select {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.address-inputs input:focus,
.address-inputs select:focus {
    border-color: #4F8E35;
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 142, 53, 0.2);
}

.create-bundle-button {
    background-color: #4F8E35;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.create-bundle-button:hover {
    background-color: #3d6b2a;
    transform: translateY(-2px);
}

nav {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    flex: 1;
}

.nav-logo-container {
    flex: 1;
}

.nav-logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4F8E35;
}

.service-categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.service-category {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-category img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-category h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-category p {
    color: #666;
    line-height: 1.6;
}

#how-it-works {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#how-it-works ol {
    padding-left: 2rem;
    margin-top: 1.5rem;
}

#how-it-works li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

#testimonials {
    background: #f1f5f9;
    padding: 4rem 20px;
    margin-top: 4rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.testimonial blockquote {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.testimonial cite {
    color: #666;
    font-style: normal;
    display: block;
    margin-top: 1rem;
    font-weight: 500;
}

.contact-section {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
}

.modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-body h3 {
    color: #4F8E35;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.modal-body p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .address-inputs {
        padding: 1.5rem;
    }

    .service-category {
        min-width: 100%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover {
        background-color: rgba(79, 142, 53, 0.1);
    }

    .hamburger {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        font-size: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* About Container Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: #4F8E35;
    margin: 0 auto;
    border-radius: 2px;
}

.about-story {
    margin-bottom: 40px;
}

.story-highlight {
    font-size: 1.4em;
    color: #4F8E35;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-story p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5em;
    color: #4F8E35;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.about-image {
    text-align: center;
    margin: 40px 0;
}

.logo-animation {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.logo-animation:hover {
    transform: scale(1.1);
}

/* Enhanced Slider Styles */
.enhanced-slider {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

.enhanced-slider h2 {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-button {
    background: rgba(79, 142, 53, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: rgba(79, 142, 53, 1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #4F8E35;
}

/* Contact Container Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.enhanced-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #333;
}

.form-label i {
    color: #4F8E35;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #4F8E35;
    outline: none;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4F8E35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #3d6f29;
}

.contact-info {
    padding: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.contact-item i {
    color: #4F8E35;
    font-size: 1.2em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #4F8E35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #3d6f29;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .core-values {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 2em;
    }

    .story-highlight {
        font-size: 1.2em;
    }

    .nav-button {
        width: 35px;
        height: 35px;
    }
}

.story-highlight-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.story-highlight-container .story-highlight {
    flex: 1;
    margin: 0;
}

.story-highlight-container .story-image {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.story-section.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: scale(1.02);
}

.principles-intro {
    text-align: center;
    font-size: 1.2em;
    color: #333;
    margin: 60px 0 30px;
}

@media (max-width: 968px) {
    .story-highlight-container,
    .story-section {
        flex-direction: column;
        text-align: center;
    }

    .story-section.reverse {
        flex-direction: column;
    }

    .story-image {
        max-width: 100%;
    }
}