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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --white: #ffffff;
}

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(--white);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fcd34d;
}

.main-nav {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.value-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
}

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

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

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

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

.split-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.split-text-left,
.split-text-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text-left {
    background-color: var(--light-bg);
}

.split-text-right {
    background-color: var(--white);
}

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

.split-text-left p,
.split-text-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.stats-list {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

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

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

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

.process-list {
    list-style: none;
    counter-reset: item;
    margin: 25px 0;
}

.process-list li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-list li::before {
    content: counter(item);
    position: absolute;
    left: -30px;
    top: 0;
    background-color: var(--primary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.process-list li strong {
    color: var(--text-dark);
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    width: calc(50% - 18px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 220px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.price-tag {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

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

.testimonials-section {
    padding: 90px 40px;
    background-color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

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

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

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

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

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.cta-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-button-large {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

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

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 45px;
    border-radius: 10px;
    max-width: 550px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    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);
}

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

.submit-button:hover {
    background-color: var(--secondary-color);
}

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

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    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;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #059669;
}

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

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

.page-hero {
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

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

.hero-overlay p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-row {
    display: flex;
    min-height: 550px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-detail-row:nth-child(even) .service-detail-content {
    background-color: var(--light-bg);
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(37, 99, 235, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    color: var(--text-light);
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-note {
    padding: 60px 40px;
    background-color: var(--light-bg);
}

.note-container {
    max-width: 900px;
    margin: 0 auto;
}

.note-container h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.values-section {
    padding: 90px 40px;
    background-color: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-box {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
}

.value-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.expertise-section {
    padding: 90px 40px;
    background-color: var(--light-bg);
}

.expertise-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.tech-categories {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.tech-category {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.tech-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.tech-category ul {
    list-style: none;
}

.tech-category ul li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.tech-category ul li:last-child {
    border-bottom: none;
}

.team-section {
    padding: 90px 40px;
    background-color: var(--white);
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--text-light);
}

.team-stats {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.team-stat {
    text-align: center;
}

.industries-section {
    padding: 90px 40px;
    background-color: var(--light-bg);
}

.industries-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.industry-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.industry-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-content {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.contact-detail-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.email-display {
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
}

.email-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    border: 2px solid var(--border-color);
}

.map-overlay p {
    margin: 5px 0;
    color: var(--text-light);
}

.map-overlay p:first-child {
    font-size: 48px;
    margin-bottom: 15px;
}

.office-image {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.contact-cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.faq-section {
    padding: 90px 40px;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.thanks-hero {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 140px);
}

.thanks-content {
    flex: 2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-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: 48px;
    margin-bottom: 30px;
}

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

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

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

.thanks-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
    counter-reset: step;
}

.next-steps li {
    counter-increment: step;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: var(--text-light);
}

.next-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    background-color: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-confirmation {
    background-color: rgba(37, 99, 235, 0.1);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 35px;
}

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

.thanks-sidebar {
    flex: 1;
    background-color: var(--light-bg);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card,
.resources-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.contact-card h4,
.resources-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p,
.resources-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.working-hours {
    font-size: 14px;
    color: var(--text-light);
}

.resources-card ul {
    list-style: none;
}

.resources-card ul li {
    margin-bottom: 10px;
}

.resources-card ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resources-card ul li a:hover {
    color: var(--secondary-color);
}

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

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 20px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content code {
    background-color: var(--light-bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 40px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .mobile-toggle {
        display: flex;
    }

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

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

    .value-grid,
    .testimonials-grid,
    .stats-list {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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

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

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