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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

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

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

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.btn-primary:hover {
    background-color: #234a85;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #cf6d17;
}

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #229954;
}

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

.intro-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-right-image {
    flex: 1;
    overflow: hidden;
}

.intro-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-left-text {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-left-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.value-proposition {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.value-proposition h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.split-features {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.feature-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.services-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.services-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.methodology-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-left {
    flex: 1;
    overflow: hidden;
}

.methodology-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.methodology-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methodology-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.methodology-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.methodology-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

.testimonial-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

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

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

.stats-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.stats-left p {
    font-size: 18px;
    opacity: 0.9;
}

.stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

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

.additional-services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.additional-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.additional-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.additional-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    color: var(--text-light);
}

.cta-right {
    flex: 0 0 auto;
}

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

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    color: var(--text-light);
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #234a85;
}

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

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--bg-light);
}

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

.page-hero-left p {
    font-size: 20px;
    color: var(--text-light);
}

.page-hero-right {
    flex: 1;
    overflow: hidden;
}

.page-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.story-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.story-left {
    flex: 1;
    overflow: hidden;
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.story-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.mission-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

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

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

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

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

.values-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.values-left p {
    font-size: 18px;
    color: var(--text-light);
}

.values-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

.team-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
}

.team-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-block {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.team-block p {
    font-size: 18px;
    color: var(--text-light);
}

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

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-right-image {
    flex: 1;
    overflow: hidden;
}

.approach-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.approach-left-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.approach-left-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.impact-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.impact-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

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

.page-hero-services {
    padding: 100px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.page-hero-services p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-detail-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

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

.service-price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.delivery-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.delivery-info h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.delivery-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-block {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.delivery-block p {
    font-size: 17px;
    color: var(--text-light);
}

.cta-services {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-hero {
    padding: 100px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-block a {
    color: var(--primary-color);
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.contact-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 17px;
    color: var(--text-light);
}

.cta-contact {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.thanks-content {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

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

.thanks-details p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details li {
    font-size: 17px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.thanks-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.thanks-note {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        transition: left 0.3s;
        padding: 40px 20px;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .services-split,
    .methodology-split,
    .stats-split,
    .cta-split,
    .form-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-left h1,
    .page-hero-services h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .split-features,
    .testimonial-grid,
    .additional-grid,
    .footer-content,
    .team-split,
    .delivery-split {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}
