/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
    background-image: linear-gradient(to bottom, #f9f7f4 0%, #f1ede8 100%);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e0d8cf;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Call-to-Action Section */
.cta-section {
    background-color: #f5f1eb;
    border: 2px solid #d4c4a8;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.1);
}

.cta-title {
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
}

.primary-cta {
    display: block;
    background-color: #d4a017;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    margin: 1rem auto;
    width: 80%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 160, 23, 0.3);
}

.primary-cta:hover {
    background-color: #c29116;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 160, 23, 0.4);
}

.secondary-cta {
    display: inline-block;
    background-color: #8b7355;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    margin: 0.5rem;
    transition: background-color 0.3s;
}

.secondary-cta:hover {
    background-color: #7a6448;
}

/* Introduction Section */
.intro-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #8b7355;
}

.intro-title {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-container {
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2rem;
    color: #8b7355;
    text-align: center;
    margin: 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0d8cf;
}

.faq-item {
    background-color: white;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    background-color: #f5f1eb;
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
    color: #8b7355;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #ede8e1;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #e0d8cf;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.domain-info {
    font-weight: bold;
    color: #8b7355;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .primary-cta {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        width: 90%;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-image {
        height: 150px;
    }
    
    .primary-cta {
        font-size: 1.1rem;
        padding: 0.7rem 1.2rem;
    }
}
