/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a90e2;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #357abd;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.decline:hover {
    background-color: #fff;
    color: #333;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: #e74c3c;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    margin-left: 15px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #4a90e2;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

.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);
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.hero-images {
    margin-top: 50px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.process h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.process-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.process-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 15px;
}

.process-item p {
    color: #666;
    line-height: 1.6;
}

.process-image {
    text-align: center;
}

.process-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.why-item p {
    color: #666;
    line-height: 1.6;
}

.why-images {
    margin-top: 40px;
}

.image-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-grid-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.contact > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.contact-item strong {
    color: #333;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #4a90e2;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #357abd;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 40px;
}

.checkmark {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
    border: 4px solid #4a90e2;
    border-radius: 50%;
    animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem {
    position: absolute;
    width: 3px;
    height: 15px;
    background-color: #4a90e2;
    left: 28px;
    top: 35px;
    transform: rotate(45deg);
    animation: checkmark-stem 0.3s ease-in-out 0.6s both;
}

.checkmark-kick {
    position: absolute;
    width: 3px;
    height: 8px;
    background-color: #4a90e2;
    left: 20px;
    top: 42px;
    transform: rotate(-45deg);
    animation: checkmark-kick 0.3s ease-in-out 0.9s both;
}

@keyframes checkmark-circle {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmark-stem {
    0% {
        height: 0;
    }
    100% {
        height: 15px;
    }
}

@keyframes checkmark-kick {
    0% {
        height: 0;
    }
    100% {
        height: 8px;
    }
}

.thank-you-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.thank-message {
    margin-bottom: 50px;
}

.thank-message p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.thank-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #fff;
    transform: translateY(-2px);
}

.confirmation-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.info-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 10px 0;
    color: #666;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

/* Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 0;
    }
    
    .thank-you-content h1 {
        font-size: 32px;
    }
    
    .thank-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .confirmation-info {
        padding: 30px 20px;
    }
    
    .thank-message p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 24px;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-stem {
        left: 21px;
        top: 26px;
        height: 11px;
    }
    
    .checkmark-kick {
        left: 15px;
        top: 31px;
        height: 6px;
    }
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .nav-list a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        display: block;
    }

    .burger-btn {
        display: flex;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .image-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .services h2,
    .process h2,
    .why-choose h2,
    .contact h2 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-grid-small {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .services,
    .process,
    .why-choose,
    .contact {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .services h2,
    .process h2,
    .why-choose h2,
    .contact h2 {
        font-size: 20px;
    }

    .service-item,
    .process-item {
        padding: 20px;
    }

    .why-item {
        padding: 20px 10px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .cookie-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

              .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;
                }

                