/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background: #81021E;
    color: white;
}

.btn-accept:hover {
    background: #8a2f39;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-decline:hover {
    background: white;
    color: #333;
}

/* Header */
.header {
    background: #81021E;
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.8;
}

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #81021E;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Main Content */
main {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    background: #81021E;
    color: white;
    padding: 60px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder.pink {
    background: linear-gradient(135deg, #ff9eb5, #ff6b9d);
}

.geometric-shapes,
.business-illustration,
.innovation-graphic,
.trust-illustration,
.contact-illustration {
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
}

.geometric-shapes::before,
.geometric-shapes::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.geometric-shapes::before {
    width: 50px;
    height: 50px;
    top: 20px;
    left: 20px;
}

.geometric-shapes::after {
    width: 30px;
    height: 30px;
    bottom: 30px;
    right: 30px;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: white;
}

.experience h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.experience-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Innovation Section */
.innovation {
    padding: 80px 0;
    background: #81021E;
    color: white;
}

.innovation h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.innovation-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: white;
}

.trust h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.trust-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Difference Section */
.difference {
    padding: 80px 0;
    background: #81021E;
    color: white;
}

.difference h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.difference-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #8a2f39;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.card-image {
    margin-bottom: 20px;
}

.card-image .image-placeholder {
    height: 150px;
    background: #7a2933;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Action Section */
.action {
    padding: 80px 0;
    background: white;
}

.action h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.action-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.action-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.action-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #81021E;
    color: white;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form form {
    margin-top: 30px;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

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

.submit-btn {
    background: white;
    color: #81021E;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-social {
    text-align: center;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.thank-you h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.thank-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.back-link {
    margin-top: 40px;
}

.btn-back {
    display: inline-block;
    background: #81021E;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #8a2f39;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .burger-btn {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-content,
    .experience-content,
    .innovation-content,
    .trust-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .innovation-content {
        grid-template-columns: 1fr;
    }

    .innovation-image {
        order: -1;
    }

    .difference-cards {
        grid-template-columns: 1fr;
    }

    .action-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero,
    .experience,
    .innovation,
    .trust,
    .difference,
    .action,
    .contact {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thank-you h1 {
        font-size: 2.5rem;
    }

    .thank-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .hero,
    .experience,
    .innovation,
    .trust,
    .difference,
    .action,
    .contact {
        padding: 40px 0;
    }

    .image-placeholder {
        height: 200px;
    }

    .card {
        padding: 20px;
    }

    .thank-you {
        padding: 60px 0;
    }

    .thank-you h1 {
        font-size: 2rem;
    }
}