/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', 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: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid #e0e0e0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-accept {
    background: linear-gradient(135deg, #7c4dff, #3f51b5);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #6a3de8, #2e3b8a);
    transform: translateY(-2px);
}

.btn-decline {
    background: linear-gradient(135deg, #b39ddb, #9c88d4);
    color: white;
}

.btn-decline:hover {
    background: linear-gradient(135deg, #a18cc9, #8a7bc8);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #5600EA;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo h1 {
    color: white;
    font-size: 32px;
    font-weight: 700;
   
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
  
    border-radius: 60px;
border: 1px solid #FFF;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: url('../images/hero.png') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 196px 0 120px;
}

.hero-content h2 {
    font-size: 40px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #7c4dff, #3f51b5);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
width: 100%;
flex: 0 1 31%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.service-card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 5px;
}

.service-card .price {
    display: block;
    padding: 0px 20px 20px;
    font-weight: 600;
    color: #000;
    font-size: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.features-image {
    max-width: 560px;
    width: 100%;
}

.features-image img {
    width: 100%;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    width: 100%;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: center;
  
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #7c4dff;
    color: white;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
   
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    line-height: 1.1;
    font-size: 14px;
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #5600EA;
    padding: 40px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 30px;
    color: #fff;
}

.about-text p {
    color: #fff;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.2;
}

.about-image img {
    width: 100%;
   
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
   border: 2px solid #5600EA;
    padding: 30px 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
  
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.team-member p {
    color: #666;
    font-size: 14px;
    line-height: 1.2;
}

/* Works Section */
.works {
    padding: 80px 0;
    background: #f8f9fa;
}

.works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.works-grid {
    display: grid;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
}

.work-item {
   
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
}

.div4 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 5;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 4;
}

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 5;
    grid-row-start: 3;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.reviews-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.review-card {
    background: #f8f9fa;
    padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
    border: 2px solid #5600EA;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    flex: 0 1 23.5%;
}

.review-card:nth-of-type(5),
.review-card:nth-of-type(6) {
  flex: 0 1 49%;
}

.review-card:hover {
    border-color: #7c4dff;
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {

    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 20px;
   font-size: 14px;
   font-weight: 500;
}

.reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer span {
    font-weight: 600;
    color: #333;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
   
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.faq-list {
   width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;

    overflow: hidden;

}

.faq-item span {
    color: #5600EA;
    font-weight: 200;
    font-size: 50px;
    top: 0;
   
}

.faq-item h3 {
   
    padding: 20px 20px 20px 48px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-item p {
    padding: 6px 10px ;
    color: #666;
    line-height: 1.2;
    margin: 0;
    background: #FFF;
box-shadow: 2px 0 0 0 #3563E9 inset;
margin-left: 15%;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
    position: relative;
}

.contact h2 {
    font-style: italic;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.contact-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
      overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
 display: block;
    object-fit: cover;
    object-position: center;
  
}

.contact-form {
    margin-left: auto;
    width: 50%;
    padding: 40px 20px;
}

.contact-form form {
   
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #EFEFEF;
border: none;
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.16) inset, 0 0 2px 0 rgba(0, 0, 0, 0.70);
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7c4dff;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.form-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn {
    background: linear-gradient(135deg, #7c4dff, #3f51b5);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #6a3de8, #2e3b8a);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #7c4dff, #3f51b5);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-about {
    background: rgba(86, 0, 234, 0.20);
    padding: 20px;
}

.footer-about a {
    text-decoration: none;
    color: #fff;
}

.footer-about h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 2px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Thank You Page */
.thank-page {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
}

.thank-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.thank-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.return-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7c4dff, #3f51b5);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.return-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 40px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #7c4dff, #3f51b5);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-list a {
        display: block;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .services h2,
    .team h2,
    .works h2,
    .reviews h2,
    .faq h2,
    .contact h2 {
        font-size: 28px;
    }

    .service-card {
        flex: 0 1 46%;
    }

    .features-content {
        flex-direction: column;
        align-items: center;
    }
    
    .team-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-image {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-height: 300px;
        min-height: 300px;
    }

    .contact-image img {
        position: absolute;
    }

    .contact-form {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thank-content h1 {
        font-size: 36px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept,
    .btn-decline {
        width: 200px;
    }
}

@media (max-width: 550px) {
    .hero-content h2 {
        font-size: 24px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .services-grid,
    .team-grid,
    .works-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
        margin-left: 0;
        margin-right: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .works-grid, .services-grid, .team-grid, .reviews-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .work-item {
        width: 100%;
        max-height: 200px;
        min-height: 200px;
        position: relative;
    }

    .work-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .thank-content h1 {
        font-size: 28px;
    }
    
    .thank-content p {
        font-size: 16px;
    }
}
              .page {
                padding: 180px 0 80px;
              
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.8;
                 
              }

              .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;
                display: flex;
                  flex-direction: column;
                
              }

              .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;
                }

                