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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6a9f;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a2332;
    --border-color: #dfe6e9;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-light);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    font-weight: 500;
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6a9f 100%);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-visual {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.value-section {
    background-color: var(--bg-white);
    padding: 5rem 2rem;
}

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

.value-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.value-container > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.approach-section {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    min-width: 320px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    background-color: var(--bg-white);
    padding: 5rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-item h3 {
    font-size: 1.2rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
}

.service-item p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-item .price {
    display: block;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.form-section {
    background: linear-gradient(135deg, #2d6a9f 0%, #1a4d7a 100%);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container > p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.trust-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.cta-final {
    background-color: var(--bg-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.cta-final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #0d1b2a;
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 77, 122, 0.97);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.page-hero {
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6a9f 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-light);
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-block {
    margin: 4rem 0;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.team-section {
    margin: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-detail {
    margin: 4rem 0;
}

.approach-detail h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.timeline-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-about {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6a9f 100%);
    border-radius: 8px;
    color: var(--text-light);
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

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

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.02rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 2rem;
}

.price-label {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-visual {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cta-section {
    background-color: var(--bg-dark);
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-form-wrapper > p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.thanks-details p {
    font-size: 1.05rem;
}

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

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .value-container h2,
    .approach-text h2,
    .services-intro h2 {
        font-size: 1.8rem;
    }

    .approach-split {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

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