* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #8B6F47;
    --accent-red: #D4A574;
    --dark-red: #5C4A37;
    --text-dark: #2C2416;
    --text-light: #6B5D4F;
    --bg-light: #F5F1EB;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Asymmetrical Banner */
.banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-red) 100%);
    margin: 2rem 0;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.banner-text {
    color: var(--white);
    z-index: 2;
}

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    transform: translateX(-20px);
    animation: slideIn 0.8s ease-out;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.banner-image {
    position: relative;
    transform: translateX(30px) rotate(-2deg);
    animation: slideInRight 0.8s ease-out;
}

.banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.3);
    background: #ccc;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(-20px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateX(30px) rotate(-2deg);
    }
}

/* Main Content - Asymmetrical Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 60px;
    background: var(--accent-red);
}

/* Asymmetrical Grid */
.asymmetrical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.asymmetrical-grid .card:nth-child(odd) {
    transform: rotate(-1deg);
    margin-top: 2rem;
}

.asymmetrical-grid .card:nth-child(even) {
    transform: rotate(1deg);
    margin-bottom: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.card:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #ccc;
}

.card h3 {
    color: var(--dark-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 0.5rem;
    stroke: var(--accent-red);
    fill: none;
    stroke-width: 2;
    vertical-align: middle;
}

/* Simple Features Section */
.simple-features-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.simple-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.simple-feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.simple-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.simple-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent-red);
    transition: all 0.3s ease;
}

.simple-feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-red);
    stroke-width: 2.5;
}

.simple-feature-card:hover .simple-feature-icon {
    background: var(--accent-red);
    transform: scale(1.1);
}

.simple-feature-card:hover .simple-feature-icon svg {
    stroke: var(--white);
}

.simple-feature-card h3 {
    color: var(--dark-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.simple-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* About Section - Two Column */
.about-section {
    margin: 5rem 0;
    padding: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    padding-right: 2rem;
}

.about-label {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-image-small {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-image-small img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #ccc;
    display: block;
}

.about-features-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.about-features-list li svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-red);
    stroke-width: 3;
    flex-shrink: 0;
}

.about-belief {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin: 2rem 0;
    line-height: 1.7;
}

.about-button {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.about-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.about-right {
    position: relative;
}

.about-image-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.about-image-large img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #ccc;
    display: block;
}

.about-stat-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--accent-red);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.about-quote {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    margin-top: 2rem;
}

.quote-marks {
    font-size: 5rem;
    color: var(--accent-red);
    line-height: 1;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: -1rem;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 1.5rem 0;
}

.quote-author {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 1rem;
}

/* Features Grid - Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
    border-color: var(--accent-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    stroke-width: 2.5;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.2);
}

.feature-card h3 {
    color: var(--dark-red);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary-blue);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
}

/* Text Content */
.text-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.text-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.text-content h2 {
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.text-content h3 {
    color: var(--dark-red);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

/* Policy Pages Styles */
.policy-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.policy-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.policy-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-list li strong {
    color: var(--dark-red);
    font-weight: 600;
}

/* Image Gallery - Asymmetrical */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(3n+1) {
    transform: rotate(-2deg);
}

.gallery-item:nth-child(3n+2) {
    transform: rotate(1deg);
}

.gallery-item:nth-child(3n) {
    transform: rotate(-1deg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ccc;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8E0D6 100%);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--accent-red);
    opacity: 0.05;
    border-radius: 50%;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: var(--primary-blue);
    opacity: 0.05;
    border-radius: 50%;
}

.contact-section-title {
    font-size: 2.5rem;
    color: var(--dark-red);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.contact-icon {
    width: 35px;
    height: 35px;
    stroke: var(--white);
    stroke-width: 2.5;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: var(--dark-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-red);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

footer p {
    margin: 0.5rem 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-top: 3px solid var(--accent-red);
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--accent-red);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--accent-red);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 165, 116, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}

.cookie-decline:hover {
    background: var(--text-light);
    color: var(--white);
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    flex-shrink: 0;
}

.cookie-close:hover {
    color: var(--accent-red);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent-red);
    opacity: 1;
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-red);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Success Page Styles */
.success-message {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
    stroke-width: 3;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-contact-item:hover {
    color: var(--primary-blue);
}

.header-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-red);
    stroke-width: 2;
}

.header-sitemap-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-red);
    border-radius: 5px;
    transition: all 0.3s;
}

.header-sitemap-link:hover {
    background: var(--accent-red);
    color: var(--white);
}

/* Mobile Menu */
@media (max-width: 1000px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 320px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-contact .header-contact-item {
        justify-content: flex-start;
            } 
        }         
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 320px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-contact .header-contact-item {
        justify-content: flex-start;
    }

    .banner {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        min-height: 400px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .banner-text h1 {
        font-size: 2rem;
        transform: translateX(0);
    }

    .banner-image {
        transform: translateX(0) rotate(0deg);
    }

    .banner-image img {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
        padding-left: 1.5rem;
    }

    .asymmetrical-grid {
        grid-template-columns: 1fr;
    }

    .asymmetrical-grid .card {
        transform: rotate(0deg) !important;
        margin: 0 !important;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        transform: rotate(0deg) !important;
    }

    .contact-section {
        padding: 3rem 2rem;
    }

    .contact-section-title {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-icon-wrapper {
        margin: 0 auto;
    }

    .container {
        padding: 1rem;
    }

    .text-content {
        padding: 1rem;
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .cookie-banner {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner-text {
        min-width: auto;
        width: 100%;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .cookie-btn {
        flex: 1;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        min-width: 100px;
    }

    .cookie-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}