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

:root {
    --primary-color: #2c5f9a;
    --secondary-color: #1a3d5c;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    position: relative;
    background-color: var(--primary-color);
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

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

.btn-hero:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.trust-indicators {
    background-color: var(--bg-white);
    padding: 50px 0;
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.indicator-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.indicator-label {
    font-size: 15px;
    color: var(--text-dark);
    max-width: 120px;
}

.content-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-visual {
    flex: 1;
    background: linear-gradient(135deg, #b8d4e8 0%, #7fa8c9 100%);
    position: relative;
}

.split-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.left-visual {
    background: linear-gradient(135deg, #7fa8c9 0%, var(--primary-color) 100%);
}

.right-visual {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
}

.about-visual {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.split-text {
    flex: 1;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 16px;
    font-size: 16px;
}

.link-arrow::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 14px;
}

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

.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.services-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.service-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.capabilities {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.capabilities-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.capabilities-text {
    flex: 1;
}

.capabilities-text h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.capabilities-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.capabilities-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background-color: var(--bg-white);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.feature-check {
    font-size: 24px;
    color: var(--success-color);
    font-weight: 700;
}

.feature-item span:last-child {
    font-size: 16px;
    color: var(--text-dark);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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 {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.inline-cta {
    margin-top: 24px;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--text-light);
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
}

.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--text-light);
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--text-light);
}

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

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

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

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

.page-lead {
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 35px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.team-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 2;
}

.team-text h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.team-numbers {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-dark);
}

.timeline-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    width: 80px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
    flex: 1;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.cta-secondary {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-secondary h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-secondary p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.service-block {
    margin-bottom: 80px;
}

.service-block.alt {
    background-color: var(--bg-light);
    padding: 60px 0;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.price-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 8px;
    margin-top: 24px;
}

.price-label {
    font-size: 14px;
    opacity: 0.9;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
}

.price-note {
    font-size: 13px;
    opacity: 0.85;
}

.service-detail-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    position: relative;
}

.fuel-visual {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.chemical-visual {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.food-visual {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.bulk-visual {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
}

.gas-visual {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.bitumen-visual {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.service-detail-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.additional-services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.additional-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.additional-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.pricing-info {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.pricing-note-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.pricing-note-box h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-note-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-note-box ul {
    margin: 20px 0 20px 24px;
}

.pricing-note-box ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pricing-cta-text {
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 24px;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.contact-item strong {
    display: block;
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item h3 {
    font-size: 19px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

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

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

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

.service-highlight strong {
    color: var(--primary-color);
}

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

.thanks-next h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-next ul {
    margin-left: 24px;
}

.thanks-next ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.thanks-contact {
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.thanks-contact p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 14px;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        min-height: 300px;
    }

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

    .content-split,
    .content-split.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 40px 30px;
    }

    .split-visual {
        min-height: 300px;
    }

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

    .capabilities-layout {
        flex-direction: column;
        gap: 40px;
    }

    .team-layout {
        flex-direction: column;
        gap: 40px;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
    }

    .timeline-year::after {
        right: -22px;
    }

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

    .service-detail-visual {
        min-height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 32px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .services-cards {
        gap: 24px;
    }

    .service-card {
        min-width: 260px;
    }
}
