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

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

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

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

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #1a5490;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-section {
    background-color: #f4f6f8;
    padding: 0;
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #144072;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
}

.approach-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.approach-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    min-width: 300px;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-markers {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marker {
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.marker strong {
    display: block;
    font-size: 18px;
    color: #1a5490;
    margin-bottom: 5px;
}

.marker span {
    color: #7f8c8d;
    font-size: 15px;
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-wrap: wrap;
}

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

.service-image {
    width: 100%;
    max-width: 300px;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-info {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #144072;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 16px;
}

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

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

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

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.why-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #bdc3c7;
    font-size: 15px;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.values-text {
    flex: 1;
    min-width: 300px;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.values-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.values-image {
    flex: 1;
    min-width: 300px;
}

.values-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-final {
    padding: 100px 0;
    background-color: #1a5490;
    text-align: center;
    color: #ffffff;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 35px;
}

.site-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    border-top: 1px solid #4a5f7a;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4a5f7a;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-cookie:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero {
    background-color: #f4f6f8;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a5490;
}

.hero-intro {
    font-size: 22px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex-basis: calc(33.333% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.member-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.team-member h3 {
    font-size: 22px;
    margin: 20px 20px 5px;
    color: #2c3e50;
}

.team-member .role {
    font-size: 15px;
    color: #1a5490;
    font-weight: 600;
    margin: 0 20px 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 20px 20px;
}

.values-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-detail h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #1a5490;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-detail {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-visual-left {
    flex: 1;
    min-width: 300px;
}

.approach-visual-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.approach-text-right {
    flex: 1;
    min-width: 300px;
}

.approach-text-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.approach-text-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.sustainability-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.sustainability-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.sustainability-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.cta-about {
    padding: 100px 0;
    background-color: #27ae60;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 35px;
}

.services-detail {
    padding: 40px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.service-price-large {
    font-size: 34px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-checklist {
    list-style: none;
    margin: 20px 0;
}

.service-checklist li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-service {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.custom-section {
    padding: 80px 0;
    background-color: #f4f6f8;
    text-align: center;
}

.custom-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.custom-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a5490;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-item .note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-note {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.reach-out-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.reach-out-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.reach-out-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.info-list {
    margin: 25px 0;
    padding-left: 25px;
}

.info-list li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.location-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.service-area {
    max-width: 800px;
    margin: 0 auto;
}

.service-area p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.faq-contact {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.faq-contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.cta-contact {
    padding: 100px 0;
    background-color: #1a5490;
    text-align: center;
    color: #ffffff;
}

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

.cta-contact p {
    font-size: 20px;
    margin-bottom: 35px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f4f6f8;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a5490;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    margin: 8px 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-details strong {
    color: #1a5490;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

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

.btn-primary {
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

.thanks-note {
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    margin-top: 30px;
}

.thanks-note p {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0;
}

.legal-page {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a5490;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

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

.legal-content ul li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: #1a5490;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: #ecf0f1;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text p {
        font-size: 17px;
    }

    .approach-grid,
    .values-split,
    .approach-split {
        flex-direction: column;
    }

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

    .service-image {
        max-width: 100%;
        width: 100%;
    }

    .testimonials {
        flex-direction: column;
    }

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

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