/* 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: rgba(0, 0, 0, 0.95);
    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-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #b91c7d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #b91c7d;
    color: white;
}

.btn-accept:hover {
    background: #9a1569;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-decline:hover {
    background: white;
    color: #333;
}

/* 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: 9999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #b91c7d;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #b91c7d;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #b91c7d;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(185, 28, 125, 0.9), rgba(185, 28, 125, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin-top: 80px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.divider {
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin: 0 auto 30px;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ffd700;
    border-radius: 50%;
}

.hero p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.btn-primary:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #333;
    color: #ffd700;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about .divider {
    margin: 0 0 30px 0;
    background: #b91c7d;
}

.about .divider::after {
    background: #b91c7d;
}

.about p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef7, #fff);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.portfolio .divider {
    background: #b91c7d;
}

.portfolio .divider::after {
    background: #b91c7d;
}

.portfolio-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.portfolio-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Methods Section */
.methods {
    padding: 100px 0;
    background: white;
    position: relative;
}

.methods-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.methods-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.methods-left .divider {
    background: #b91c7d;
    margin: 0 0 30px 0;
}

.methods-left .divider::after {
    background: #b91c7d;
}

.methods-left > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.methods-item {
    padding: 25px;
    border-radius: 15px;
    position: relative;
    border: 2px solid transparent;
}

.methods-item.light-pink {
    background: #fdf2f8;
    border-color: #f3e8ff;
}

.methods-item.dark-pink {
    background: #b91c7d;
    color: white;
}

.methods-item.light-gray {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.methods-item.dark-purple {
    background: #7c3aed;
    color: white;
}

.methods-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #b91c7d;
}

.methods-item.dark-pink .methods-arrow,
.methods-item.dark-purple .methods-arrow {
    color: white;
}

.methods-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #b91c7d;
    padding-right: 40px;
}

.methods-item.dark-pink h3,
.methods-item.dark-purple h3 {
    color: white;
}

.methods-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.methods-item.dark-pink p,
.methods-item.dark-purple p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-methods {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.btn-methods:hover {
    background: #333;
    color: #ffd700;
    transform: translateY(-2px);
}

.methods-right {
    position: relative;
}

.methods-right img {
    width: 100%;
    border-radius: 15px;
    height: 400px;
    object-fit: cover;
}

/* Ideas Section */
.ideas {
    padding: 100px 0;
    background: #f8f9fa;
}

.ideas-header {
    text-align: center;
    margin-bottom: 80px;
}

.ideas h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ideas .divider {
    background: #b91c7d;
}

.ideas .divider::after {
    background: #b91c7d;
}

.ideas-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ideas-item {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ideas-item:hover {
    transform: translateY(-5px);
}

.ideas-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.ideas-content {
    padding: 30px;
    flex: 1;
}

.ideas-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.ideas-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #b91c7d, #8b1560);
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact .divider {
    background: #ffd700;
}

.contact .divider::after {
    background: #ffd700;
}

.contact p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px #ffd700;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    align-self: center;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: #b91c7d;
    font-size: 18px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b91c7d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 12px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-135%);
        transition: transform 0.3s ease;
        z-index: 9998;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .header-links {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-images img {
        width: 45%;
        height: 150px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .methods-right {
        order: -1;
    }
    
    .methods-right img {
        height: 250px;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
    }
    
    .ideas-item {
        flex-direction: column;
    }
    
    .ideas-item img {
        width: 100%;
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .about h2,
    .portfolio h2,
    .methods h2,
    .ideas h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-item {
        min-width: auto;
    }
    
    .methods-grid {
        gap: 20px;
    }
    
    .methods-item {
        padding: 20px;
    }
    
    .ideas-grid {
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 24px;
    }
    
    .about h2,
    .portfolio h2,
    .methods h2,
    .ideas h2,
    .contact h2 {
        font-size: 22px;
    }
    
    .portfolio-content,
    .methods-item,
    .ideas-content {
        padding: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        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;
                }

                