* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #2c5f7c;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

.main-nav a:hover {
    color: #2c5f7c;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 5px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-grid {
    padding: 80px 50px;
    background-color: #fafbfc;
}

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

.services-header h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-card {
    display: flex;
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image,
.service-info {
    flex: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

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

.service-info {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    padding: 70px 60px;
    background-color: #2c5f7c;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-right {
    padding: 70px 60px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5f7c;
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-split {
    padding: 80px 50px;
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    color: #6c757d;
}

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

.trust-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b8b8b8;
}

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

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

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    padding: 30px 50px;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #6c757d;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-content-left,
.hero-image-right {
    flex: 1;
}

.hero-content-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    color: #495057;
    line-height: 1.7;
}

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

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

.story-split {
    display: flex;
    padding: 80px 0;
}

.story-text,
.story-image {
    flex: 1;
}

.story-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 50px;
    background-color: #fafbfc;
}

.values-section h2 {
    font-size: 40px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.value-split {
    display: flex;
    margin-bottom: 40px;
    min-height: 300px;
}

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

.value-text,
.value-visual {
    flex: 1;
}

.value-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.value-text h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.value-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.value-visual {
    position: relative;
}

.team-split {
    padding: 80px 50px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.7;
}

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

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
}

.methodology-split {
    display: flex;
    padding: 80px 0;
}

.method-image,
.method-text {
    flex: 1;
}

.method-image {
    position: relative;
    overflow: hidden;
}

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

.method-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.method-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.method-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
}

.method-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.method-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #495057;
}

.method-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: 700;
}

.cta-about {
    padding: 80px 50px;
    background-color: #2c5f7c;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c5f7c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
}

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

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

.service-detail-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 18px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7c;
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.service-cta:hover {
    background-color: #234a61;
    transform: translateY(-2px);
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.services-comparison {
    padding: 80px 50px;
    background-color: #fafbfc;
}

.services-comparison h2 {
    font-size: 38px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.comparison-column {
    flex: 1;
    padding: 45px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.comparison-column.highlighted {
    background-color: #2c5f7c;
    color: #ffffff;
    transform: scale(1.05);
}

.comparison-column h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
}

.comparison-column.highlighted h3 {
    color: #ffffff;
}

.comparison-column ul {
    list-style: none;
    margin-bottom: 30px;
}

.comparison-column ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 15px;
}

.comparison-column ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2c5f7c;
}

.comparison-column.highlighted ul li::before {
    color: #ffffff;
}

.comparison-column.highlighted ul li {
    color: rgba(255, 255, 255, 0.95);
}

.comparison-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    text-align: center;
}

.comparison-column.highlighted .comparison-price {
    color: #ffffff;
}

.faq-services {
    padding: 80px 50px;
    background-color: #ffffff;
}

.faq-services h2 {
    font-size: 38px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.faq-item {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

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

.contact-hero-left,
.contact-hero-right {
    flex: 1;
}

.contact-hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.contact-hero-left h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero-left p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.contact-hero-right {
    position: relative;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
    padding: 80px 50px;
}

.contact-details,
.contact-map {
    flex: 1;
}

.contact-details {
    padding-right: 60px;
}

.contact-details h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c5f7c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.contact-detail h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}

.contact-map {
    padding-left: 60px;
}

.map-placeholder {
    height: 350px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    padding: 40px;
}

.map-placeholder p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

.location-details h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-details p {
    font-size: 15px;
    color: #495057;
    line-height: 1.8;
}

.contact-approach {
    padding: 80px 50px;
    background-color: #fafbfc;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.approach-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    color: #6c757d;
}

.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-split {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background-color: #2c5f7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-cta-split {
    display: flex;
    min-height: 400px;
}

.cta-left,
.cta-right {
    flex: 1;
}

.cta-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
}

.cta-right {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #2c3e50;
}

.check-icon {
    width: 32px;
    height: 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.thanks-split {
    padding: 80px 50px;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 35px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.thanks-next-steps {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.next-step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    text-align: left;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c5f7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-description h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-description p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.thanks-resources {
    padding: 80px 50px;
    background-color: #fafbfc;
}

.thanks-resources h2 {
    font-size: 36px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.resource-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.resource-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.resource-card p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
}

.resource-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background-color: #234a61;
    transform: translateY(-2px);
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 18px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.legal-content a {
    color: #2c5f7c;
    text-decoration: none;
    font-weight: 600;
}

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

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

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

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
}

.cookies-table td {
    padding: 15px;
    border: 1px solid #e5e5e5;
    color: #495057;
    font-size: 15px;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .trust-cards,
    .team-stats,
    .comparison-split,
    .faq-split,
    .resources-grid {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-info,
    .service-detail-content,
    .form-left,
    .form-right,
    .story-text,
    .method-text,
    .contact-details,
    .contact-map,
    .cta-left,
    .cta-right {
        padding: 40px 30px;
    }

    .comparison-column.highlighted {
        transform: scale(1);
    }
}