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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.nav-container {
    background-color: #ffffff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-card {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 50px;
    padding: 0 5%;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #e0e7ff;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-cards {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    display: flex;
    gap: 30px;
}

.intro-card-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.intro-card-item p {
    color: #546e7a;
    line-height: 1.7;
}

.problem-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
}

.problem-card {
    flex: 1.2;
}

.problem-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.problem-card p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8f4f8;
}

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

.services-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-header p {
    font-size: 18px;
    color: #546e7a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 15px);
    min-width: 450px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e3f2fd;
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-content p {
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #546e7a;
}

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

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

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

.select-service-btn {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 16px;
}

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

.trust-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 5%;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 5%;
}

.form-container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container > p {
    color: #546e7a;
    margin-bottom: 30px;
}

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

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

.form-field label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.info-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.info-card p {
    color: #546e7a;
    line-height: 1.7;
}

.info-card a {
    color: #3498db;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 20px;
    margin-top: 100px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    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 ease;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #34495e;
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2980b9;
}

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5f6c6d;
}

.page-header {
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 0 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
}

.page-header p {
    font-size: 20px;
    color: #546e7a;
}

.about-intro {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 5%;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content-card {
    flex: 1;
}

.about-content-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-content-card p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8f4f8;
}

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

.values-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 60px 5%;
    background-color: #ffffff;
    border-radius: 12px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.approach-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 5%;
}

.approach-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-card p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.expertise-cards {
    display: flex;
    gap: 30px;
}

.expertise-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.expertise-card p {
    color: #546e7a;
    line-height: 1.7;
}

.philosophy-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 5%;
}

.philosophy-content {
    background-color: #ecf0f1;
    padding: 50px;
    border-radius: 12px;
}

.philosophy-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.philosophy-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.cta-card {
    background-color: #3498db;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-card .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-card .cta-primary:hover {
    background-color: #ecf0f1;
}

.services-detail-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 5%;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

.service-detail-card.featured-service {
    border: 3px solid #3498db;
    position: relative;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 40px;
    background-color: #3498db;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

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

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #546e7a;
}

.service-detail-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-detail-content p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.process-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.process-cards {
    display: flex;
    gap: 25px;
}

.process-card {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.process-card p {
    color: #546e7a;
    line-height: 1.6;
}

.contact-main-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 5%;
    display: flex;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-info-card > p {
    color: #546e7a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-detail-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail-item p {
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    color: #2c3e50;
    margin: 0;
}

.contact-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8f4f8;
}

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

.location-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 5%;
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.location-section > p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.location-benefits {
    display: flex;
    gap: 30px;
}

.location-benefit {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-benefit h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.location-benefit p {
    color: #546e7a;
    line-height: 1.7;
}

.faq-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 5%;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a252f;
}

.faq-card p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 5%;
}

.thanks-container {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-confirmation p {
    color: #2c3e50;
    font-size: 16px;
    margin: 0;
}

.thanks-next-steps {
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
}

.next-steps-cards {
    display: flex;
    gap: 25px;
    text-align: center;
}

.next-step-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

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

.next-step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a252f;
}

.next-step-card p {
    color: #546e7a;
    font-size: 14px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.thanks-info {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 5%;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a252f;
}

.thanks-info-cards {
    display: flex;
    gap: 30px;
}

.thanks-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.thanks-info-card p {
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-info-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thanks-info-card a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 5%;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content ul li {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .service-card {
        min-width: 100%;
    }

    .testimonial-cards,
    .expertise-cards,
    .location-benefits,
    .process-cards {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .hero-card,
    .problem-section,
    .about-intro,
    .contact-main-section,
    .service-detail-card {
        flex-direction: column;
    }

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

    .intro-cards,
    .info-section,
    .next-steps-cards,
    .thanks-info-cards {
        flex-direction: column;
    }

    .values-grid,
    .faq-cards {
        flex-direction: column;
    }

    .value-card,
    .faq-card {
        min-width: 100%;
    }

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

@media (max-width: 600px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .section-header h2,
    .trust-section h2,
    .values-section h2,
    .team-section h2 {
        font-size: 28px;
    }
}