:root {
    --forest-green: #2c6e49;
    --light-green: #4c956c;
    --beige: #f2e8cf;
    --charcoal: #2f2f2f;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    overflow-x: hidden;
}

header {
    background-color: var(--white);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 2rem;
    color: var(--forest-green);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 50px;
    margin-bottom: -5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--forest-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url("tuta4.png") no-repeat;
    background-size: 100%;
}

@media (max-width: 768px) {
    .hero {
        background-size: 100% 100%;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    max-width: 500px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    /* text-shadow: 2px -2px 10px wheat; */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: -2px 2px 1px black;
}

.hero-cta {
    display: inline-block;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.hero-cta:hover {
    background-color: var(--light-green);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    width: 50%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 70%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(44, 110, 73, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--dark-gray);
}

.about {
    background-color: var(--gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    width: 50%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 50%;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.about-cta {
    display: inline-block;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.about-cta:hover {
    background-color: var(--light-green);
    transform: translateY(-3px);
}

.how-it-works {
    background-color: var(--white);
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    text-align: center;
    width: 25%;
    position: relative;
    z-index: 2;
}

.step-number {
    background-color: var(--forest-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 12%;
    width: 76%;
    height: 2px;
    background-color: var(--light-green);
    z-index: 1;
}

.customize {
    background-color: var(--beige);
}

.customize-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.customize-text {
    width: 40%;
}

.customize-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.customize-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.customize-form {
    width: 60%;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--forest-green);
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: var(--charcoal);
}

/* Split color styles */
.split-color {
    display: flex;
}

.color-half {
    width: 50%;
    height: 100%;
}

/* Add a subtle dividing line between the colors */
.split-color .color-half:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.form-submit {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s, background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--light-green);
    transform: translateY(-3px);
}

.testimonials {
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--forest-green);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.faq {
    background-color: var(--gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--white);
    padding: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    background-color: var(--white);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-text {
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-section {
    background-color: var(--forest-green);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--forest-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--beige);
    transform: translateY(-3px);
}

footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-about {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--forest-green);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        padding-top: 4rem; 
    }

    .hero-text {
        text-align: center;
        /* margin-bottom: 3rem; */
    }

    .hero-image {
        width: 100%;
        height: 50vh;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .customize-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image,
    .about-text,
    .customize-text,
    .customize-form {
        width: 100%;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        width: 100%;
    }

    .step-line {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Style for the language selector */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--forest-green);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--forest-green);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.language-btn:hover {
    background-color: var(--forest-green);
    color: var(--white);
}

.language-icon {
    width: 20px;
    height: 20px;
}

/* Hide the default Google Translate widget */
#google_translate_element {
    position: absolute;
    right: 0;
    top: 100%;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 1rem;
    }

    .language-btn {
        padding: 0.3rem 0.75rem;
        font-size: 0.9rem;
    }
}

