* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #A4A894;
}

header {
    background-color: #BCC2B6;
    padding: 1rem 1rem;
    text-align: center;
    border-bottom: 1px solid #000000;
    width: 100%;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-container img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: bold;
}

header p {
    font-size: 1rem;
    color: #000000;
    opacity: 0.9;
}

nav {
    background-color: #BCC2B6;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #A4A894;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    display: inline-block;
    margin: 0 1rem;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

nav a.nav-cta {
    background-color: #9b9f8c;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #000000;
    font-weight: bold;
    transition: all 0.3s;
}

nav a.nav-cta:hover {
    background-color: #7a7d6d;
    opacity: 1;
}

.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #dadada;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 3rem;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #A4A894;
    padding-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-image {
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 400px;
}

.intro-text h2 {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background-color: #BCC2B6;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #A4A894;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #333333;
}

.how-it-works {
    background-color: #BCC2B6;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.how-it-works ol {
    margin-left: 2rem;
    margin-bottom: 0;
}

.how-it-works li {
    margin-bottom: 1rem;
    color: #333333;
}

.cta-button {
    display: inline-block;
    background-color: #BCC2B6;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #000000;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #A4A894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-container {
    text-align: center;
    margin-top: 2rem;
}

footer {
    background-color: #BCC2B6;
    color: #000000;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 2px solid #000000;
}

footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    nav a {
        display: inline-block;
        margin: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .logo-container img {
        width: 80px;
        height: 80px;
    }
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.contact-modal-content {
    background-color: #BCC2B6;
    padding: 2rem;
    border-radius: 8px;
    border: 1.5px solid #000000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.contact-modal-content h2 {
    color: #000000;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    font-size: 1.8rem;
}

.contact-modal-content p {
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
    opacity: 0.8;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.contact-modal-close:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

.contact-modal-content a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-modal-content a:hover {
    opacity: 0.7;
}

/* FAQs Modal Styles */
.faqs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.faqs-modal-content {
    background-color: #BCC2B6;
    padding: 2rem;
    border-radius: 8px;
    border: 1.5px solid #000000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    overflow-y: auto;
}

.faqs-modal-content h2 {
    color: #000000;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #9b9f8c;
    padding-bottom: 1rem;
}

.faqs-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
    opacity: 0.8;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.faqs-modal-close:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

.faq-list {
    margin-top: 1rem;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #9b9f8c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 16px;
    background-color: #eae8e8;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Century Gothic', sans-serif;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
    color: #2C3E1F;
}

.faq-text {
    flex: 1;
    text-align: left;
}

.faq-toggle {
    display: inline-block;
    margin-left: 12px;
    color: #2C3E1F;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle.expanded {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 16px;
    background-color: #f5f5f5;
    border-top: 1px solid #eeeeee;
    color: #000000;
}

.faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.faq-images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.faq-image-column {
    text-align: center;
}

.faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 12px;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .faq-images-container {
        grid-template-columns: 1fr;
    }
}
