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

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #f5c6cb;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #1a5f7a;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #15495d;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #f0f4f8;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #e8f1f5;
}

.cta-primary-light {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary-light:hover {
    background-color: #f0f4f8;
}

.features-grid {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.cards-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.card-content p {
    color: #5a6c7d;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.service-item:hover {
    border-color: #1a5f7a;
    transform: translateY(-4px);
}

.service-item.featured {
    border-color: #1a5f7a;
    background-color: #f0f8ff;
    position: relative;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #5a6c7d;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.cta-center {
    text-align: center;
}

.trust-section {
    padding: 4rem 2rem;
}

.trust-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.trust-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.trust-text p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.trust-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #5a6c7d;
    font-size: 1rem;
}

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

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1a5f7a;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #5a6c7d;
    font-size: 0.875rem;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.order-section {
    padding: 4rem 2rem;
    background-color: #f7f9fb;
}

.order-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    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;
    color: #2c3e50;
    font-weight: 500;
}

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group a {
    color: #1a5f7a;
    text-decoration: underline;
}

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

.btn-submit:hover {
    background-color: #15495d;
}

.disclaimer-section {
    padding: 2rem;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #5a6c7d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: #b8c5d0;
    font-size: 0.875rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5a6a;
    color: #b8c5d0;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-cookie.accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-cookie.reject {
    background-color: #f0f4f8;
    color: #2c3e50;
}

.page-header {
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.page-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.about-content {
    padding: 4rem 2rem;
}

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

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

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.intro-text p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 4rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.value-card p {
    color: #5a6c7d;
}

.team-section {
    padding: 4rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.team-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-box {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f7a;
}

.stat-label {
    color: #5a6c7d;
    font-size: 0.875rem;
}

.infrastructure-section {
    padding: 4rem 2rem;
}

.infra-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.infra-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.infra-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-section {
    padding: 4rem 2rem;
}

.timeline-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #1a5f7a;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    transform: translateX(-50%);
}

.timeline-content {
    padding-left: 1.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.timeline-content p {
    color: #5a6c7d;
}

.pricing-section {
    padding: 4rem 2rem;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5a6c7d;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #1a5f7a;
    background-color: #f0f8ff;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h2 {
    font-size: 1.75rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: #5a6c7d;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    color: #5a6c7d;
    font-size: 1rem;
}

.pricing-features h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 0.875rem;
    text-align: center;
    background-color: #f0f4f8;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-price:hover {
    background-color: #e8f1f5;
}

.btn-price.primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-price.primary:hover {
    background-color: #15495d;
}

.additional-services {
    padding: 4rem 2rem;
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail-card {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.service-icon {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1.5;
    min-width: 300px;
    padding: 2rem;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.link-cta {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #15495d;
    text-decoration: underline;
}

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

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.comparison-table thead {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.comparison-table tbody tr:hover {
    background-color: #f7f9fb;
}

.faq-section {
    padding: 4rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.faq-item p {
    color: #5a6c7d;
}

.contact-content {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.contact-card {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #5a6c7d;
    margin: 0;
}

.email-text {
    color: #2c3e50;
    font-weight: 500;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-note {
    font-size: 0.875rem;
    color: #5a6c7d;
    font-style: italic;
    margin-top: 1rem;
}

.response-time {
    font-size: 0.875rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

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

.office-photo {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.office-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.office-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.office-description p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.locations-section {
    padding: 4rem 2rem;
}

.locations-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.locations-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.location-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.location-card p {
    color: #5a6c7d;
    margin-bottom: 0.75rem;
}

.support-channels {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.support-channels h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.channels-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.channel-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem;
    background-color: #f7f9fb;
    border-radius: 12px;
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.channel-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.channel-item p {
    color: #5a6c7d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.channel-detail {
    font-size: 0.875rem;
    color: #1a5f7a;
    font-weight: 600;
}

.careers-section {
    padding: 4rem 2rem;
}

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

.partners-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.partners-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.partner-item {
    flex: 1;
    min-width: 240px;
    padding: 1.5rem;
    background-color: #f7f9fb;
    border-radius: 12px;
}

.partner-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.partner-item p {
    font-size: 0.875rem;
    color: #5a6c7d;
}

.thanks-section {
    padding: 5rem 2rem;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.step-text p {
    color: #5a6c7d;
}

.thanks-info {
    background-color: #f7f9fb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

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

.btn-primary {
    padding: 0.875rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #15495d;
}

.btn-secondary {
    padding: 0.875rem 2rem;
    background-color: #f0f4f8;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.resources-section {
    padding: 4rem 2rem;
}

.resources-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.resource-card p {
    color: #5a6c7d;
}

.contact-reminder {
    padding: 3rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.contact-reminder p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.legal-page {
    padding: 4rem 2rem;
}

.last-updated {
    text-align: center;
    color: #5a6c7d;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a5f7a;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .services-cards,
    .pricing-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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

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

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

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