* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #52393f;
    --color-secondary: #86901f;
    --color-accent: #394712;
    --color-text: #333333;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-secondary);
}

.banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/picture.jpg') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-secondary);
    margin: 1rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    stroke: var(--color-secondary);
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--color-text);
    line-height: 1.8;
}

.content-section {
    background: var(--color-light);
    padding: 3rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-image {
    width: 100%;
    height: 300px;
    background: #ccc;
    border-radius: 10px;
    object-fit: cover;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-section {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.map-container iframe {
    width: 100%;
    max-width: 100%;
    height: 450px;
    border: none;
    display: block;
}

footer {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--color-accent);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-secondary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--color-primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-accent);
}

.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(134, 144, 31, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82, 57, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    display: flex;
    gap: 2rem;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: var(--color-secondary);
}

.why-choose-item:nth-child(1):hover {
    border-left-color: var(--color-secondary);
}

.why-choose-item:nth-child(2):hover {
    border-left-color: var(--color-accent);
}

.why-choose-item:nth-child(3):hover {
    border-left-color: var(--color-secondary);
}

.why-choose-item:nth-child(4):hover {
    border-left-color: var(--color-accent);
}

.why-choose-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.why-choose-item:hover .why-choose-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(134, 144, 31, 0.3);
}

.why-choose-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-choose-item:hover .why-choose-icon-wrapper::before {
    opacity: 0.3;
}

.why-choose-icon {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-choose-content p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--color-text);
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ccc;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-badge {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-badge.before {
    background: rgba(82, 57, 63, 0.9);
    color: var(--color-white);
}

.gallery-badge.after {
    background: rgba(134, 144, 31, 0.9);
    color: var(--color-white);
}

.gallery-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(134, 144, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2352393f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-info-sidebar {
    flex: 1;
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info-sidebar h2 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-info-sidebar .contact-item {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info-sidebar .map-container {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-sidebar .map-container iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    display: block;
}

.success-content {
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 50px;
    height: 50px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-content h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.success-info {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .contact-info-sidebar {
        order: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .menu-toggle {
        font-size: 1.3rem;
    }

    .banner {
        padding: 1.5rem 0;
    }

    .banner h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .banner p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .content-wrapper {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .content-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .content-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .content-image {
        height: 200px;
    }

    .features-list {
        margin-top: 1.5rem;
    }

    .features-list li {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    .map-container {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .map-container iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px;
        min-width: 0;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image-wrapper {
        height: 180px;
    }

    .gallery-item h4 {
        padding: 1rem 1rem 0.5rem;
        font-size: 1.1rem;
    }

    .gallery-item p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .why-choose-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .why-choose-icon-wrapper {
        margin: 0 auto;
        width: 70px;
        height: 70px;
    }

    .why-choose-icon {
        width: 35px;
        height: 35px;
    }

    .why-choose-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .why-choose-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .why-choose-section {
        padding: 2.5rem 0;
    }

    .why-choose-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-section {
        padding: 2rem 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-form-wrapper .section-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .form-group select {
        padding-right: 2rem;
        background-size: 10px;
        background-position: right 0.8rem center;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-info-sidebar {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info-sidebar h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .contact-info-sidebar .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-info-sidebar .contact-item h3 {
        font-size: 0.95rem;
    }

    .contact-info-sidebar .contact-item p {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .contact-info-sidebar .map-container {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-info-sidebar .map-container iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px;
        min-width: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }

    .legal-content {
        padding: 1.2rem;
        margin: 2rem auto;
    }

    .legal-content h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .legal-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .legal-content ul,
    .legal-content ol {
        margin-left: 1.5rem;
        font-size: 0.9rem;
    }

    .success-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .success-icon {
        width: 40px;
        height: 40px;
    }

    .success-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .success-info {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .success-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .success-actions .btn {
        width: 100%;
    }

    .cookie-banner {
        padding: 1rem 0.8rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .cookie-banner-buttons button {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    nav {
        padding: 0.8rem 0;
    }

    .nav-menu {
        padding: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.cookie-banner-accept {
    background: var(--color-secondary);
    color: var(--color-white);
}

.cookie-banner-accept:hover {
    background: var(--color-accent);
}

.cookie-banner-decline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cookie-banner-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

