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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.nav-menu a:hover {
    color: #1a73e8;
}

.hero-card {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a2332;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.intro-cards {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.card-intro {
    text-align: center;
    margin-bottom: 50px;
}

.card-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2332;
}

.card-intro p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

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

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

.feature-card p {
    font-size: 16px;
    color: #666;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a2332;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    max-width: 550px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

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

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

.btn-select {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #1557b0;
    transform: scale(1.02);
}

.form-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a2332;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #34a853;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #2d8e47;
    transform: scale(1.02);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

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

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

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.trust-card {
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 360px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2332;
}

.trust-card p {
    font-size: 16px;
    color: #555;
}

.main-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: #b0b8c1;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #141e2b;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cookie.accept {
    background-color: #34a853;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #2d8e47;
    transform: scale(1.05);
}

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

.btn-cookie.reject:hover {
    background-color: #c82333;
    transform: scale(1.05);
}

.page-header {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-card-large {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 400px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2332;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

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

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

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

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.approach-card {
    background-color: #f0f4f8;
    padding: 35px 28px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 15px;
}

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

.approach-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

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

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

.team-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ffffff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #1a2332;
}

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

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: 700;
}

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 30px;
    font-weight: 700;
    color: #1a73e8;
}

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

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1 1 450px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a2332;
    font-weight: 600;
}

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

.contact-map-card {
    flex: 1 1 450px;
    background-color: #e9ecef;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.info-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #34a853;
    margin-bottom: 30px;
}

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

.thanks-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.thanks-details p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.thanks-details strong {
    color: #1a73e8;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: #f8f9fa;
    color: #1a73e8;
    text-decoration: none;
    border: 2px solid #1a73e8;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #e9ecef;
    transform: scale(1.02);
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a2332;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a2332;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #1a2332;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .card-intro h2 {
        font-size: 28px;
    }

    .services-preview h2 {
        font-size: 32px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-disclosure {
        margin: 10px 0;
    }

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

    .about-card-large,
    .service-detail-card {
        flex-direction: column;
    }

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

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