* {
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2c5f7c;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

.cookie-content a {
    color: #7fb8d4;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1e4a5f;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.intro-section {
    padding: 80px 0;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.services-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-row {
    display: flex;
    margin-bottom: 60px;
    gap: 40px;
    align-items: center;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-content-right,
.service-content-left {
    flex: 1;
}

.service-content-right h3,
.service-content-left h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content-right p,
.service-content-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1e4a5f;
}

.form-section {
    padding: 80px 0;
}

.form-split {
    display: flex;
    gap: 60px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-info p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: 700;
}

.form-container {
    flex: 1;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5f7c;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trust-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.trust-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    border-top: 1px solid #3a4d5f;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0bec5;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #8b97a3;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero {
    background-color: #2c5f7c;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #d0e1e9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-row {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: 700;
    font-size: 20px;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.cta-content-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1e4a5f;
}

.about-section {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 28px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.approach-section {
    padding: 80px 0;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.experience-content-center h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.experience-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.experience-card {
    flex: 1;
    max-width: 350px;
}

.experience-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.experience-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.contact-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 28px;
}

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

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.location-content-center h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-content-center p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 120px 0;
}

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

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

.thanks-content-center h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-content-center > p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1e4a5f;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #2c5f7c;
    text-decoration: none;
    border: 2px solid #2c5f7c;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c5f7c;
    color: #ffffff;
}

.legal-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    margin-left: 24px;
}

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

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .intro-split,
    .service-row,
    .form-split,
    .trust-split,
    .about-split,
    .values-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
    }

    .experience-grid {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}