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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1;
    padding: 2rem;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.service-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #1a252f;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-select.selected {
    background-color: #27ae60;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    padding: 2rem;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    color: #1a252f;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #dce1e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    color: #95a5a6;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #4a5568;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.3rem;
    color: #4a5568;
}

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

.hero-image-about img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1;
    padding: 2rem;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a252f;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

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

.approach-content {
    flex: 1;
    padding: 2rem;
}

.approach-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a252f;
    font-weight: 700;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.team-content {
    flex: 1;
    padding: 2rem;
}

.team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.services-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.service-detail-card {
    margin-bottom: 3rem;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-card-image {
    flex: 1;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a252f;
    font-weight: 700;
}

.service-card-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #4a5568;
    font-size: 1rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.comparison-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.comparison-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
    font-weight: 700;
    text-align: center;
}

.comparison-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a252f;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.additional-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.info-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.thanks-main {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.thanks-details {
    margin: 1.5rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.thanks-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.next-steps {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a252f;
    font-weight: 700;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.step-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table thead {
    background-color: #f8f9fa;
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.gdpr-table th {
    font-weight: 700;
    color: #2c3e50;
}

.gdpr-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-split,
    .form-container-split,
    .story-split,
    .approach-split,
    .team-split,
    .contact-split,
    .service-card-split {
        flex-direction: column;
    }

    .service-split.reverse,
    .approach-split.reverse,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .hero-text {
        padding: 3rem 2rem;
    }

    .service-details {
        padding: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-label {
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hero-content h1,
    .hero-text h1,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }

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