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

html {
    scroll-behavior: smooth;
}

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: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
}

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

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

.nav-links a:hover {
    color: #2c5f8d;
}

.hero-card {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 3rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    min-height: 400px;
    display: flex;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f8d;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c5f8d;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

.problem-section {
    background-color: #f0f4f8;
    padding: 4rem 0;
    margin: 4rem 0;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.text-block {
    flex: 1.2;
}

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

.text-block p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.image-block {
    flex: 1;
}

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

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

.insight-cards h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

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

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

.services-showcase h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    color: #777;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
}

.select-service {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.trust-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.approach-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

.cta-card {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4a6b 100%);
    color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #1e4a6b;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #333;
}

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

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

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

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

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

.btn-reject {
    background-color: #e0e0e0;
    color: #333;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.page-header {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.story-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f8d;
}

.story-text p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

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

.values-cards h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.philosophy-section {
    background-color: #f0f4f8;
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.philosophy-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.philosophy-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

.approach-detail h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

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

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f8d;
}

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

.difference-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.difference-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

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

.intro-wrapper {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.service-header {
    padding: 2rem 2.5rem;
    background-color: #f0f4f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    flex: 1;
}

.service-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.service-meta .duration {
    color: #777;
}

.service-meta .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f8d;
}

.service-body {
    padding: 2.5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-description {
    flex: 1.5;
}

.service-description h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.service-description p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-description ul {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
}

.service-detail-card .select-service {
    margin: 0 2.5rem 2.5rem;
}

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

.service-process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
}

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

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

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

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

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

.contact-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c5f8d;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-text {
    color: #555;
    line-height: 1.7;
}

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

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

.contact-questions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

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

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

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

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

.thanks-card h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f0f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-name {
    font-weight: 700;
    color: #2c5f8d;
    font-size: 1.1rem;
}

.thanks-info {
    margin: 3rem 0;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.step-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

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

.legal-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-update {
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.legal-section a {
    color: #2c5f8d;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-card {
        flex-direction: column;
        margin: 2rem 1rem;
    }

    .hero-content {
        padding: 2rem;
    }

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

    .card-grid,
    .card-grid-two,
    .card-grid-three,
    .testimonial-cards,
    .approach-grid,
    .difference-grid,
    .process-cards,
    .faq-cards {
        flex-direction: column;
    }

    .section-wrapper,
    .story-wrapper,
    .service-body,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
}