/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Red Rose', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(240, 220, 220, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: #333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Red Rose', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    padding: 12px 24px;
    border: 2px solid #333;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Red Rose', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Red Rose', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

/* Header */
.header {
    background: rgba(240, 220, 220, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0dcdc 0%, #e8d0d0 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.hero-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
border: 2px solid rgba(38, 7, 7, 0.40);
background: #FFF1F1;
box-shadow: 0px 307px 86px 0px rgba(0, 0, 0, 0.00), 0px 197px 79px 0px rgba(0, 0, 0, 0.01), 0px 111px 66px 0px rgba(0, 0, 0, 0.04), 0px 49px 49px 0px rgba(0, 0, 0, 0.07), 0px 12px 27px 0px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Red Rose', sans-serif;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #333;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-image {
    grid-column: 1 / -1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
border: 2px solid rgba(38, 7, 7, 0.40);
background: #FFF1F1;
box-shadow: 0px 307px 86px 0px rgba(0, 0, 0, 0.00), 0px 197px 79px 0px rgba(0, 0, 0, 0.01), 0px 111px 66px 0px rgba(0, 0, 0, 0.04), 0px 49px 49px 0px rgba(0, 0, 0, 0.07), 0px 12px 27px 0px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.service-content h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-content li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.service-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #333;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0dcdc 0%, #e8d0d0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background: #333;
    color: white;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.partnership-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.partnership-left h2,
.partnership-right h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.partnership-left p,
.partnership-right p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

.partnership-left h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: white;
}

.partnership-list ul {
    list-style: none;
    margin: 20px 0;
}

.partnership-list li {
    margin-bottom: 10px;
    color: #ccc;
    position: relative;
    padding-left: 15px;
}

.partnership-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: white;
}

/* Solutions Grid */
.solutions-grid {
    padding: 80px 0;
    background: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    color: #333;
    font-weight: 600;
}

.solution-card p {
    margin: 0 20px 15px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.solution-card .btn-primary {
    margin: 0 20px 25px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ccc;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: #444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #666;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .partnership-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(240, 220, 220, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-form {
        padding: 25px;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.7rem;
    }
    
    /* Partnership Mobile */
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partnership-left h2,
    .partnership-right h2 {
        font-size: 1.5rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* Solutions Mobile */
    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Cookie Mobile */
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .hero-form {
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .partnership-left h2,
    .partnership-right h2 {
        font-size: 1.3rem;
    }
    
    .contact h2 {
        font-size: 1.7rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .partnership {
        padding: 60px 0;
    }
    
    .solutions-grid {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
}

/* Smooth transitions and animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.solution-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.solution-card:nth-child(2) {
    animation-delay: 0.1s;
}

.solution-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}links {
    display: flex;
    gap: 10px;
}


              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                