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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.cookie-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.cookie-content h3 {
    color: #8B1538;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background: #8B1538;
    color: white;
}

.cookie-btn.primary:hover {
    background: #6d1029;
}

.cookie-btn.secondary {
    background: #8B1538;
    color: white;
    border: 2px solid #8B1538;
}

.cookie-btn.secondary:hover {
    background: transparent;
    color: #8B1538;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}


.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #8B1538;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B1538;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
html {
    scroll-behavior: smooth;
}
.burger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn {
    background: #8B1538;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #6d1029;
    transform: translateY(-2px);
}

.hero-form {
    background: #8B1538;
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.hero-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    flex: 1;
}

.submit-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.services-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-text p {
    color: #666;
    line-height: 1.6;
}

.services-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #8B1538;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #8B1538;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-weight: 600;
    color: #8B1538;
    font-size: 18px;
}

/* Team Section */
.team-section {
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #8B1538;
    margin-bottom: 10px;
}

.team-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* AI Section */
.ai-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.ai-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ai-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ai-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Investment Section */
.investment-section {
    padding: 80px 0;
    background: white;
}

.investment-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8B1538;
    text-align: center;
    margin-bottom: 50px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.investment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
}

.investment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.investment-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #8B1538;
    padding: 20px 20px 10px;
    line-height: 1.3;
}

.investment-card p {
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8B1538;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B1538;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .services-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-text h2 {
        font-size: 28px;
    }

    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-text h2 {
        font-size: 28px;
    }

    .investment-section h2 {
        font-size: 28px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;}