/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    line-height: 1.6;
    color: #3C210E;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #3C210E;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: #3C210E;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #df8184;
}

.nav-item.active .nav-link {
    color: #df8184;
}

.btn-primary {
    background-color: #fdd1d2;
    color: #3C210E;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-primary:hover {
    background-color: #C4A886;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 500px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-badge svg {
    width: 24px;
    height: 24px;
    border-radius: 2px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #3C210E;
}

.hero-content {
    background-color: #F5F3F0;
    padding: 60px 0;
    width: 100%;
}

.hero-text {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    color: #3C210E;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #3C210E;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background-color: #df8184;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-consultation {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fdd1d2;
    color: #3C210E;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
    width: fit-content;
}

.btn-consultation:hover {
    background-color: #C4A886;
    transform: translateY(-2px);
}

.hero-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-label {
    font-size: 14px;
    color: #666;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #3C210E;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #FFFFFF;
    margin-top: 0;
    clear: both;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #df8184;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #3C210E;
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.btn-about {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: #3C210E;
    border: 2px solid #df8184;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-about:hover {
    background-color: #df8184;
    transform: translateY(-2px);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Biography Section */
.biography {
    padding: 80px 0;
    background-color: #F9F5F0;
}

.biography-content {
    max-width: 900px;
    margin: 0 auto;
}

.biography-text {
    text-align: left;
}

.biography-description {
    font-size: 16px;
    line-height: 1.8;
    color: #3C210E;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #F8F6F3;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #3C210E;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '•';
    color: #df8184;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-service {
    background-color: #fdd1d2;
    color: #3C210E;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-service:hover {
    background-color: #C4A886;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #F8F6F3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background-color: #df8184;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #3C210E;
}

.btn-map {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: #3C210E;
    border: 2px solid #df8184;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
    width: fit-content;
}

.btn-map:hover {
    background-color: #df8184;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #3C210E;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #df8184;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: #df8184;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-submit:hover {
    background-color: #c96d70;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #df8184;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: #df8184;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    color: #666;
}

.checkbox-text a {
    color: #df8184;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #3C210E;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
}

.captcha-container {
    margin: 30px 0;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.captcha-question {
    font-size: 18px;
    font-weight: 600;
    color: #3C210E;
    margin-bottom: 15px;
}

.captcha-input {
    width: 100px;
    padding: 10px;
    border: 2px solid #df8184;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-modal {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-modal.primary {
    background-color: #df8184;
    color: white;
}

.btn-modal.primary:hover {
    background-color: #c96d70;
}

.btn-modal.secondary {
    background-color: #f0f0f0;
    color: #666;
}

.btn-modal.secondary:hover {
    background-color: #e0e0e0;
}

/* Google Maps Modal */
.map-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.map-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    height: 80%;
    position: relative;
}

.map-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    z-index: 10001;
}

.map-close:hover {
    color: #000;
}

.map-iframe {
    width: 100%;
    height: calc(100% - 60px);
    border: none;
    border-radius: 10px;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: #FFD700;
    font-size: 20px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #3C210E;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #3C210E;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.btn-read-more {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: #3C210E;
    border: 2px solid #fdd1d2;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.btn-read-more:hover {
    background-color: #df8184;
    transform: translateY(-2px);
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E5E5E5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #df8184;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3C210E;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: #3C210E;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 14px;
    opacity: 0.8;
}

.footer .social-icons {
    display: flex;
    gap: 15px;
}

.footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.footer .social-icon:hover {
    background-color: #df8184;
}

.footer-menu {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #df8184;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-input input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: white;
    font-family: 'Archivo', sans-serif;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: #df8184;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #C4A886;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: #df8184;
    text-decoration: none;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #df8184;
}

.footer-legal .divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-legal .lgbtq-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.footer-legal .lgbtq-badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-legal .lgbtq-badge svg {
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.footer-legal .lgbtq-badge span {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }



    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
    }
    
    .hero-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-badge span {
        font-size: 12px;
    }

    .hero-text {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-menu {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal .lgbtq-badge {
        margin-top: 10px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Terms of Service Styles */
.terms-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-text {
    line-height: 1.8;
}

.terms-text h2 {
    color: #3C210E;
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #fdd1d2;
    padding-bottom: 10px;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text p {
    margin-bottom: 20px;
    color: #3C210E;
    font-size: 16px;
}

.terms-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-text li {
    margin-bottom: 10px;
    color: #3C210E;
    font-size: 16px;
}

.terms-text strong {
    color: #3C210E;
    font-weight: 600;
}

/* Responsive styles for modals */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .captcha-question {
        font-size: 16px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-modal {
        width: 100%;
    }
    
    .map-modal-content {
        margin: 2% auto;
        padding: 15px;
        width: 95%;
        height: 90%;
    }
    
    .map-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .checkbox-custom {
        width: 18px;
        height: 18px;
    }
    
    .terms-section {
        padding: 60px 0;
    }
    
    .terms-text h2 {
        font-size: 20px;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #F9F5F0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #df8184;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #df8184;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.pricing-header-card {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #3C210E;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #df8184;
}

.price-period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-list {
    list-style: none;
    margin-bottom: 0;
}

.pricing-list li {
    padding: 12px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.pricing-list li::before {
    content: '✓';
    color: #df8184;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.btn-pricing {
    background-color: #fdd1d2;
    color: #3C210E;
    border: none;
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
    width: 100%;
    margin-top: auto;
}

.btn-pricing:hover {
    background-color: #C4A886;
    transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
    background-color: #df8184;
    color: white;
}

.pricing-card.featured .btn-pricing:hover {
    background-color: #c66d70;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #df8184;
}

.note-text svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive styles for pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-header-card {
        padding: 30px 20px 15px;
    }
    
    .pricing-title {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .pricing-features {
        padding: 20px;
    }
    
    .note-text {
        flex-direction: column;
        text-align: left;
        padding: 15px;
    }
}
