* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(7,15,43);
    color: white;
    font-family: Manrope, sans-serif;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(7,15,43);
    z-index: 1;
    height: 62px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .header-logo {
        width: 130px;
    }

    .header-title {
        width: 153px;
        font-size: 12px;
        color: rgb(86, 204, 242);
        margin-right: 42px;
        text-align: right;
    }

    .header-icon {
        display: none;
    }
}

.main-content {
    margin-top: 50px;
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    height: fit-content !important;
}

.main-content>* {
    flex-grow: 1;
}

.image-comparison-section {
    position: relative;
    width: 100%;
    height: 460px;
    flex: 2;
}

.image-comparison-section--ya {
    height: 410px !important;
    margin-bottom: -40px;
}

.comparison-slider {
    outline: none;
    width: 100%;
    height: 100%;
}

.comparison-slider.hide {
    display: none;
}

.comparison-slider img {
    object-fit: cover;
    height: 460px;
    width: 100%;
}

.handle {
    position: absolute;
    top: 50%;
    pointer-events: none;
    box-sizing: border-box;
    margin-left: 1px;
    transform: translate(calc(-50% - 0.5px), -50%);
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    background-color: #00000052;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    border: 1px solid white;
    border-radius: 50% !important;
}

.handle span+span {
    margin-left: 12px;
}

img-comparison-slider {
    visibility: hidden;
}

img-comparison-slider [slot='second'] {
    display: none;
}

img-comparison-slider.rendered {
    visibility: inherit;
}

img-comparison-slider.rendered [slot='second'] {
    display: unset;
}

.gallery-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
}

.slider__image {
    min-width: 94px;
    max-width: 94px;
    min-height: 94px;
    max-height: 94px;
    object-fit: cover;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    pointer-events: auto;
}

.slider__image:first-of-type {
    border-radius: 10px 0 0 10px;
}

.slider__image:last-of-type {
    border-radius: 0 10px 10px 0;
}

.slider__image.active {
    border: 4px solid rgb(86, 204, 242);
}

.upload-container {
    padding: 20px;
}

.upload-area {
    height: 94px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 1px dashed rgb(86, 204, 242);
    padding: 10px 10px 30px;
    text-align: center;
    cursor: pointer;
}

.upload-text {
    position: absolute;
    top: 62px;
    left: 50%;
    transform: translate(-50%);
    max-width: 229px;
    width: 100%;
    font-size: 18px;
    font-weight: 200;
    padding: 0 20px;
    background-color: rgb(7,15,43);
}

.separator {
    text-align: center;
    margin: 32px 0 16px;
    color: rgb(22, 138, 152);
    letter-spacing: 7px;
    font-size: 10px;
    line-height: 15px;
    font-weight: 200;
}

.examples-link {
    text-align: center;
    font-weight: 200;
}
.background-desktop {
    display: none;
}
@media (min-width: 1024px) {
    .site-header {
        background-color: transparent;
        height: auto;
        padding: 32px 10px 20px;
        max-width: 1296px;
        margin: 0 auto;

        .header-logo {
            width: 260px;
        }

        .header-title {
            width: 223px;
            height: 81px;
            color: white;
            text-align: left;
            margin: 2px 0 0;
            font-size: 30px;

            span {
                font-size: 24px;
                display: block;
                margin-top: 3px;
            }
        }

        .header-icon {
            display: block;
            width: 203px;
        }
    }

    .main-content {
        max-width: 1296px;
        margin: 180px auto 0;
        display: grid;
        grid-template-columns: 1fr 424px;
        grid-gap: 0;
    }

    .image-comparison-section {
        max-width: 848px;
        border-radius: 10px;
        overflow: hidden;
    }

    .upload-section {
        height: 460px !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .upload-container {
        padding: 0 20px 20px 30px;
    }

    .upload-area {
        height: 214px;
        padding: 52px 0;
    }

    .upload-text {
        top: 104px;
        font-size: 22px;
        background: transparent;
    }

    .separator {
        display: none;
    }

    .examples-link {
        margin-top: 16px;
    }

    .gallery-thumbnails {
        flex-wrap: wrap;
        padding-right: 0;
    }

    .slider__image:first-of-type {
        border-radius: 10px 0 0;
    }
    .slider__image:nth-of-type(4) {
        border-radius: 0 10px 0 0;
    }
    .slider__image:nth-of-type(5) {
        border-radius: 0 0 0 10px;
    }
    .slider__image:last-of-type {
        border-radius: 0 0 10px;
    }
    .background-desktop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        object-fit: cover;
        z-index: -2;
        pointer-events: none;
    }
    .background-desktop .bg-image {
        width: 100%;
    }
    .background-desktop::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(7,15,43);
        opacity: .6;
    }
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Headings */
.page-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.page-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(86, 204, 242), rgb(22, 138, 152));
    border-radius: 2px;
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(7,15,43,0.9), rgba(22,138,152,0.1));
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.metric-card {
    text-align: center;
    padding: 20px;
    background: rgba(86, 204, 242, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(86, 204, 242, 0.3);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(86, 204, 242);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.overview-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Solutions Showcase Section */
.solutions-showcase {
    padding: 80px 0;
    background: rgba(7,15,43,0.95);
}

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

.solution-card {
    background: linear-gradient(145deg, rgba(86, 204, 242, 0.1), rgba(22, 138, 152, 0.1));
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(86, 204, 242, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 204, 242, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(86, 204, 242, 0.2);
    border-color: rgba(86, 204, 242, 0.5);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(22,138,152,0.1), rgba(7,15,43,0.9));
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Team Showcase Section */
.team-showcase {
    padding: 80px 0;
    background: rgba(7,15,43,0.95);
}

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

.team-profile {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(86, 204, 242, 0.3);
}

.team-profile h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.profile-role {
    color: rgb(86, 204, 242);
    font-weight: 500;
    margin-bottom: 15px;
}

.profile-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(86, 204, 242, 0.1), rgba(7,15,43,0.9));
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* FAQ Showcase Section */
.faq-showcase {
    padding: 80px 0;
    background: rgba(7,15,43,0.95);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-entry {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-entry:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(86, 204, 242, 0.1);
}

.faq-header h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    color: rgb(86, 204, 242);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-entry.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-content p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Contact Showcase Section */
.contact-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(22,138,152,0.1), rgba(7,15,43,0.9));
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(86, 204, 242);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgb(86, 204, 242), rgb(22, 138, 152));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(86, 204, 242, 0.3);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgb(86, 204, 242);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(86, 204, 242);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(86, 204, 242);
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Mobile: Move cookie notification to top */
@media (max-width: 1024px) {
    .cookie-notification {
        bottom: auto;
        top: 0;
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
    }
    
    .cookie-notification.show {
        transform: translateY(0);
    }
}

.cookie-notification.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.accept-btn {
    background: rgb(86, 204, 242);
    color: white;
}

.accept-btn:hover {
    background: rgb(22, 138, 152);
    transform: translateY(-1px);
}

.learn-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.learn-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Cookie Policy Modal */
.cookie-policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Mobile: Adjust cookie policy modal positioning */
@media (max-width: 1024px) {
    .cookie-policy-modal {
        align-items: flex-start;
        padding-top: 80px;
    }
    
    .cookie-policy-content {
        max-height: calc(100vh - 100px);
    }
}

.cookie-policy-modal.show {
    display: flex;
}

.cookie-policy-content {
    background: rgba(7, 15, 43, 0.95);
    border: 1px solid rgba(86, 204, 242, 0.3);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-policy-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: white;
}

.cookie-policy-body {
    padding: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookie-policy-body h3 {
    color: white;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cookie-policy-body h3:first-child {
    margin-top: 0;
}

.cookie-policy-body p {
    margin-bottom: 15px;
}

.cookie-policy-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.cookie-policy-body li {
    margin-bottom: 8px;
}

.cookie-policy-footer {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-end;
}

.accept-all-btn {
    background: rgb(86, 204, 242);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-all-btn:hover {
    background: rgb(22, 138, 152);
    transform: translateY(-1px);
}

.close-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solutions-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .company-overview,
    .solutions-showcase,
    .advantages-section,
    .team-showcase,
    .testimonials-section,
    .faq-showcase,
    .contact-showcase {
        padding: 60px 0;
    }
    
    .solution-card,
    .advantage-card,
    .team-profile,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .faq-header {
        padding: 20px;
    }
    
    .faq-content p {
        padding: 0 20px 20px;
    }
    
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-policy-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .cookie-policy-header {
        padding: 20px;
    }
    
    .cookie-policy-header h2 {
        font-size: 1.5rem;
    }
    
    .cookie-policy-body {
        padding: 20px;
    }
    
    .cookie-policy-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .accept-all-btn,
    .close-btn {
        width: 100%;
    }
}