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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.brand-logo h1 {
    font-size: 26px;
    color: #1a5490;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-link:hover {
    color: #1a5490;
}

.nav-link.active {
    color: #1a5490;
    font-weight: 600;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e8eef3;
}

.hero-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.75), rgba(44, 62, 80, 0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.5;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-hero:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.intro-section {
    background-color: #f8f9fa;
    padding: 85px 0;
}

.intro-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.intro-content h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a5490;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.75;
    color: #5a6c7d;
}

.services-grid-section {
    padding: 95px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

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

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8eef3;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-text {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-text h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a5490;
    font-weight: 600;
}

.service-text p {
    font-size: 15px;
    line-height: 1.65;
    color: #5a6c7d;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 18px;
}

.btn-service {
    background-color: #1a5490;
    color: #ffffff;
    padding: 13px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #134170;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 84, 144, 0.3);
}

.why-choose-section {
    background-color: #f8f9fa;
    padding: 85px 0;
}

.why-choose-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 55px;
    color: #2c3e50;
    font-weight: 700;
}

.features-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    flex: 1 1 280px;
    max-width: 320px;
}

.feature-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 18px;
}

.feature-item h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
    font-weight: 600;
}

.feature-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.form-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #1a5490 0%, #2c3e50 100%);
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.form-wrapper h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 15px;
    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: #1a5490;
}

.btn-submit {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 65px 0 25px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 19px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 22px;
    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: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:first-child {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie:first-child:hover {
    background-color: #229954;
}

.btn-cookie:last-child {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie:last-child:hover {
    background-color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2c3e50 100%);
    padding: 75px 0;
    color: #ffffff;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content-section {
    padding: 85px 0;
}

.about-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
}

.about-intro h3 {
    font-size: 36px;
    margin-bottom: 22px;
    color: #1a5490;
    font-weight: 700;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.75;
    color: #5a6c7d;
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 75px;
    flex-wrap: wrap;
}

.story-image-wrapper {
    flex: 1 1 400px;
    background-color: #e8eef3;
    border-radius: 10px;
    overflow: hidden;
}

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

.story-text {
    flex: 1 1 450px;
}

.story-text h4 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a5490;
    font-weight: 600;
}

.story-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.values-section {
    background-color: #f8f9fa;
    padding: 65px;
    border-radius: 10px;
    margin-bottom: 75px;
}

.values-section h3 {
    font-size: 32px;
    margin-bottom: 45px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-box {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 450px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-box h5 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
    font-weight: 600;
}

.value-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.team-approach {
    max-width: 850px;
    margin: 0 auto;
}

.team-approach h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.team-approach p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.services-detail-section {
    padding: 85px 0;
}

.service-detail-item {
    display: flex;
    gap: 55px;
    align-items: center;
    margin-bottom: 85px;
    flex-wrap: wrap;
}

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

.detail-content {
    flex: 1 1 450px;
}

.detail-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a5490;
    font-weight: 700;
}

.detail-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.price-info {
    font-size: 18px;
    margin: 25px 0;
    color: #2c3e50;
}

.price-info strong {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
}

.detail-image-wrapper {
    flex: 1 1 400px;
    background-color: #e8eef3;
    border-radius: 10px;
    overflow: hidden;
}

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

.contact-info-section {
    padding: 85px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 65px;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 380px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a5490;
    font-weight: 600;
}

.contact-box p {
    font-size: 15px;
    line-height: 1.75;
    color: #5a6c7d;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.contact-note {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-additional {
    max-width: 850px;
    margin: 0 auto;
}

.contact-additional h3 {
    font-size: 30px;
    margin-bottom: 22px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-additional p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 16px;
    color: #27ae60;
    margin: 0;
}

.thanks-next {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 26px;
    margin-bottom: 22px;
    color: #1a5490;
    font-weight: 600;
    text-align: center;
}

.thanks-steps {
    padding-left: 25px;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 14px;
}

.thanks-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #134170;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 85px 0;
}

.legal-page h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-content h3 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #1a5490;
    font-weight: 600;
}

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

.legal-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 14px;
}

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

.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-content em {
    display: block;
    margin-top: 30px;
    color: #7f8c8d;
    font-size: 14px;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 500px;
    }

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

    .about-story {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 35px;
    }
}
