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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb5;
    --accent-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-gray: #f4f4f4;
    --medium-gray: #e0e0e0;
    --text-color: #333;
    --white: #ffffff;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-legal {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.mobile-menu a {
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image-left,
.split-image-right {
    flex: 1;
}

.split-image-left img,
.split-image-right img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.split-text-left,
.split-text-right {
    flex: 1;
}

.split-text-left h2,
.split-text-right h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.split-text-left p,
.split-text-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.intro-section {
    padding: 100px 0;
}

.problem-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.center-title {
    text-align: center;
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1 1 calc(50% - 30px);
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

.process-split {
    padding: 100px 0;
}

.process-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.trust-section .center-title {
    color: var(--white);
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(33.333% - 40px);
    text-align: center;
}

.trust-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.testimonials-section {
    padding: 100px 0;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.services-preview {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-link-wrap {
    text-align: center;
}

.link-arrow {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.cta-split-section {
    padding: 100px 0;
}

.split-cta-text {
    flex: 1;
}

.split-cta-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.split-cta-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.split-cta-form {
    flex: 1;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.order-form h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.guarantee-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.guarantee-grid {
    display: flex;
    gap: 40px;
}

.guarantee-item {
    flex: 1;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.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;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #d35400;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.price-large {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-details {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.pricing-details p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.about-intro {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    padding: 100px 0;
}

.story-section h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1 1 calc(50% - 40px);
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.approach-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.approach-item h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

.tech-section {
    padding: 100px 0;
}

.tech-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 6px;
}

.tech-feature strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 8px;
}

.tech-feature p {
    color: #666;
}

.certification-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.cert-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.cert-badge {
    text-align: center;
}

.cert-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.cert-badge p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.numbers-section {
    padding: 100px 0;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.number-item {
    text-align: center;
}

.big-number {
    font-size: 56px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.number-item p {
    font-size: 18px;
    color: var(--text-color);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 15px;
    text-align: center;
}

.quick-contact {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.center-cta {
    text-align: center;
    margin-top: 25px;
}

.faq-contact {
    padding: 80px 0;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-section h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-info {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-text h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-text p {
    color: #666;
    line-height: 1.6;
}

.thanks-service-info {
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.service-name {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-contact {
    font-size: 16px;
    color: #666;
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page {
    padding: 60px 0;
}

.last-updated {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    background-color: var(--white);
}

.legal-content h1 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.gdpr-table thead,
.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--medium-gray);
}

.gdpr-table tbody tr:nth-child(even),
.cookie-table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content,
    .split-container,
    .service-detail-split {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .problems-grid,
    .trust-grid,
    .values-grid,
    .approach-grid {
        flex-direction: column;
    }

    .problem-card,
    .trust-item,
    .value-card,
    .approach-item {
        flex: 1 1 100%;
    }

    .guarantee-grid,
    .numbers-grid,
    .contact-grid,
    .cta-buttons {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .center-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }

    .cert-badges {
        flex-direction: column;
    }
}
