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

:root {
    --primary-color: #2563eb;
    --secondary-color: #475569;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav {
    display: none;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

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

.intro-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    width: 100%;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.cta-card {
    background: var(--gradient-1);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.process-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.order-section {
    padding: 80px 20px;
    background: white;
}

.order-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.order-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.order-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 500;
}

.order-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 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%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.sticky-btn {
    display: block;
    padding: 16px 30px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.6);
}

.page-hero {
    background: var(--gradient-1);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: column;
}

.service-detail-visual {
    width: 100%;
    height: 300px;
    border-radius: 16px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-examples {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-examples strong {
    color: var(--text-dark);
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.pricing-info {
    padding: 60px 20px;
    background: var(--bg-light);
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
}

.pricing-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.pricing-card > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.pricing-factors {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.factor-item {
    text-align: left;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.factor-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.factor-item p {
    color: var(--text-light);
    margin: 0;
}

.about-intro {
    padding: 80px 20px;
    background: white;
}

.about-intro-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-visual {
    width: 100%;
}

.visual-box {
    width: 100%;
    height: 350px;
    border-radius: 16px;
}

.values-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-section {
    padding: 80px 20px;
    background: white;
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 18px;
}

.team-departments {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.department-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.department-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.department-card > p {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.department-desc {
    color: var(--text-light);
    line-height: 1.7;
}

.sustainability-section {
    padding: 80px 20px;
    background: white;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sustainability-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.sustainability-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.sustainability-list {
    list-style: none;
}

.sustainability-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.sustainability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.sustainability-visual {
    width: 100%;
}

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-note p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.map-placeholder p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    color: var(--success-color);
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

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

.step-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.thanks-actions .btn-primary {
    background: var(--primary-color);
    color: white;
}

.thanks-actions .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.thanks-contact {
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 60px 20px;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-intro {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

.legal-back {
    margin-top: 50px;
    text-align: center;
}

.legal-back .btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .logo h1 {
        font-size: 24px;
    }

    .hamburger {
        display: none;
    }

    .nav {
        display: flex;
    }

    .hero-content h2 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .intro-grid {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        width: calc(50% - 15px);
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        width: calc(50% - 15px);
    }

    .order-wrapper {
        flex-direction: row;
    }

    .order-info,
    .order-form {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        width: calc(50% - 15px);
    }

    .footer-grid {
        flex-direction: row;
    }

    .footer-column {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

    .service-detail-visual {
        width: 40%;
        height: 400px;
    }

    .pricing-factors {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .factor-item {
        width: calc(50% - 12.5px);
    }

    .about-intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .about-intro-content {
        flex: 1;
    }

    .about-intro-visual {
        width: 40%;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 15px);
    }

    .timeline-item {
        flex-direction: row;
        gap: 40px;
    }

    .timeline-year {
        min-width: 100px;
    }

    .team-departments {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .department-card {
        width: calc(50% - 15px);
    }

    .sustainability-content {
        flex-direction: row;
        align-items: center;
    }

    .sustainability-text {
        flex: 1;
    }

    .sustainability-visual {
        width: 40%;
    }

    .contact-grid {
        flex-direction: row;
        gap: 80px;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        width: calc(50% - 12.5px);
    }

    .next-steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        width: calc(33.333% - 17px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .service-card {
        width: calc(33.333% - 20px);
    }

    .testimonial-card {
        width: calc(33.333% - 20px);
    }

    .process-step {
        width: calc(25% - 23px);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}