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

:root {
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-100: #dcfce7;
    --green-50: #f0fdf4;
    --emerald-500: #10b981;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    z-index: 50;
    transition: all 0.3s;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--green-600);
}

.nav-btn {
    background: linear-gradient(to right, var(--green-600), var(--emerald-500));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: box-shadow 0.3s;
}

.nav-btn:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu.show {
    display: flex;
}

.mobile-link {
    display: block;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--green-600);
}

.mobile-btn {
    display: block;
    background: linear-gradient(to right, var(--green-600), var(--emerald-500));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding: 8rem 1rem 5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f0fdf4 50%, rgba(16, 185, 129, 0.05) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-100);
    color: var(--green-600);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(to right, var(--green-600), var(--emerald-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--green-600), var(--emerald-500));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: box-shadow 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--gray-900);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid var(--gray-200);
    transition: box-shadow 0.3s;
}

.btn-secondary:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        text-align: left;
    }
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-image {
        justify-content: flex-end;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 1rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #bbf7d0;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.service-icon {
    background: linear-gradient(to bottom right, var(--green-600), var(--emerald-500));
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.service-features svg {
    color: var(--green-500);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Partners Section */
.partners-section {
    padding: 5rem 1rem;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-card {
    width: 100%;
    height: 128px;
    background: linear-gradient(to bottom right, var(--gray-50), var(--green-50));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s;
    border: 2px solid var(--gray-100);
    color: var(--gray-400);
    font-weight: 500;
    text-align: center;
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s;
}

.partner-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border-color: #bbf7d0;
}

.partner-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, var(--gray-50), var(--green-50));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.advantage-item svg {
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: linear-gradient(to bottom right, var(--green-600), var(--emerald-500));
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-features .feature-box {
    background: linear-gradient(to bottom right, var(--green-600), var(--emerald-500));
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-box p {
    color: #d1fae5;
}

@media (min-width: 640px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 1rem;
    background: white;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(to bottom right, var(--gray-50), var(--green-50));
    border-radius: 1rem;
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.contact-icon {
    background: linear-gradient(to bottom right, var(--green-600), var(--emerald-500));
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--gray-600);
    text-align: center;
    word-break: break-word;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(to bottom right, var(--green-600), var(--emerald-500));
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
}

.form-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #d1fae5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: none;
}

.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 8rem 1rem 4rem;
    background: linear-gradient(to bottom right, var(--gray-50), var(--green-50));
    text-align: center;
}

.portfolio-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.portfolio-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.portfolio-hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.portfolio-section {
    padding: 5rem 1rem;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    border: 2px solid var(--gray-100);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border-color: var(--green-300);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--gray-100), var(--green-50));
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--green-600);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.portfolio-link:hover {
    background: var(--green-600);
    color: white;
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.portfolio-tag {
    background: linear-gradient(to right, var(--green-50), var(--green-100));
    color: var(--green-700);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.portfolio-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.portfolio-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.portfolio-feature svg {
    color: var(--green-600);
    flex-shrink: 0;
}

.portfolio-cta {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, var(--green-600), var(--green-700));
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.nav-link.active {
    color: var(--green-600);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--green-600);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: box-shadow 0.3s;
    font-family: inherit;
}

.submit-btn:hover:not(:disabled) {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn svg {
    transition: transform 0.3s;
}

.submit-btn:hover:not(:disabled) svg {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-wrapper {
        padding: 3rem;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo h5 {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-column p {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-column h5 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
}

.footer-column ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.privacy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s;
    font-size: 0.875rem;
    font-family: inherit;
}

.privacy-btn:hover {
    color: white;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 64rem;
    width: 100%;
    margin: 2rem auto;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-icon {
    background: var(--green-100);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.modal-icon svg {
    color: var(--green-600);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
}

.close-modal {
    padding: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: var(--gray-100);
}

.modal-body {
    padding: 1.5rem;
    color: var(--gray-700);
}

.law-notice {
    background: var(--green-50);
    border: 2px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.law-notice svg {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 4px;
}

.law-notice h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #14532d;
    margin-bottom: 0.5rem;
}

.law-notice p {
    color: #166534;
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 1.5rem;
}

.privacy-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.privacy-section ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info {
    background: var(--gray-50);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info svg {
    color: var(--green-600);
}

.contact-info a {
    color: var(--green-600);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--green-500);
}

.update-date {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

.modal-footer {
    position: sticky;
    bottom: 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.modal-close-btn {
    width: 100%;
    background: linear-gradient(to right, var(--green-600), var(--emerald-500));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.modal-close-btn:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--green-600);
    box-shadow: 0 -20px 25px -5px rgb(0 0 0 / 0.1);
    z-index: 50;
    padding: 1.5rem;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.cookie-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    background: var(--green-100);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.cookie-icon svg {
    color: var(--green-600);
}

.cookie-info h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.cookie-info p {
    color: var(--gray-600);
    line-height: 1.7;
}

.text-link {
    color: var(--green-600);
    background: none;
    border: none;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.text-link:hover {
    color: var(--green-500);
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.btn-accept {
    background: linear-gradient(to right, var(--green-600), var(--emerald-500));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: box-shadow 0.3s;
    font-family: inherit;
}

.btn-accept:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-decline {
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-decline:hover {
    background: var(--gray-300);
}

@media (min-width: 640px) {
    .cookie-buttons {
        flex-direction: row;
        width: auto;
    }
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cookie-info {
        max-width: 70%;
    }
}
