/* Final CTA Section */
.final-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 6rem 2rem;
    background: #e8e8e8;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: #e8e8e8;
    padding: 4rem;
}

.cta-content .ornament {
    margin-bottom: 1.5rem;
}

.cta-content .ornament img {
    height: 80px;
    width: auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.cta-content .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
}

.cta-content .cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .final-cta {
        min-height: 50vh;
        padding: 4rem 1.5rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content .ornament img {
        height: 60px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-content .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }
}
