/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    color: white;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ffbc0d;
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ffa500;
}

/* Partners Section */
.partners-section {
    background-color: white;
    padding: 4rem 0;
}

.partners-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s;
}

.partner-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.partner-card img {
    height: 3rem;
    margin-bottom: 1rem;
}

.partner-button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid #ffbc0d;
    color: black;
    background: transparent;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.partner-button:hover {
    background-color: #ffbc0d;
}

/* How It Works */
.how-it-works {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step i {
    width: 3rem;
    height: 3rem;
    color: #ffbc0d;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.step p {
    color: #666;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
    color: #333;
}

.faq-question i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
    color: #666;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    color: #666;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Section */
.contact-section {
    background-color: #ffbc0d;
    padding: 4rem 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-numbers {
        flex-direction: row;
        justify-content: center;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #db1a1a;
}

.phone-link i {
    width: 1.5rem;
    height: 1.5rem;
}

.divider {
    display: none;
    color: #333;
}

@media (min-width: 768px) {
    .divider {
        display: inline;
    }
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 2rem 0;
    text-align: center;
}