* {
    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: #333;
    background-color: #f8f9fa;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2c5aa0;
    color: white;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 16px;
}

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

.ad-disclosure {
    padding: 4px 12px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.nav {
    display: flex;
    gap: 24px;
}

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

.nav a:hover {
    color: #2c5aa0;
}

.hero-card {
    margin-bottom: 40px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(44, 90, 160, 0.65) 100%);
    display: flex;
    align-items: center;
}

.hero-text-card {
    background-color: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-text-card h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text-card p {
    font-size: 18px;
    color: #555;
}

.intro-section {
    padding: 60px 0;
    background-color: white;
}

.intro-card-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-text-card {
    flex: 1;
    min-width: 300px;
}

.intro-text-card h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.intro-image-card {
    flex: 1;
    min-width: 300px;
}

.intro-image-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2c5aa0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #234a87;
}

.btn-select-service:active {
    transform: scale(0.98);
}

.form-section {
    padding: 60px 0;
    background-color: white;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-card p {
    color: #666;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    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: #2c5aa0;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #2c5aa0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a87;
}

.btn-submit:active {
    transform: scale(0.98);
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.benefit-card p {
    font-size: 15px;
    color: #666;
}

.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4070 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

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

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

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

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

.service-detail-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.service-detail-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5aa0;
    margin-top: 20px;
}

.service-detail-price span {
    font-size: 16px;
    font-weight: 600;
}

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

.cta-card {
    text-align: center;
    background-color: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-card h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #234a87;
    transform: translateY(-2px);
}

.about-intro-section {
    padding: 60px 0;
    background-color: white;
}

.about-cards-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-card {
    flex: 1;
    min-width: 300px;
}

.about-text-card h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-text-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.about-image-card {
    flex: 1;
    min-width: 300px;
}

.about-image-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 15px;
    color: #666;
}

.approach-section {
    padding: 60px 0;
    background-color: white;
}

.approach-card-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.team-card p {
    font-size: 15px;
    color: #666;
}

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

.contact-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

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

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

.contact-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

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

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

.contact-image-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.directions-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.directions-card h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.directions-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 80px 0;
    background-color: white;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

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

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

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

.btn-primary {
    background-color: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background-color: #234a87;
}

.btn-secondary {
    background-color: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 20px;
}

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

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

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

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

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

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

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

@media (max-width: 768px) {
    .hero-text-card h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

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

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

    .thanks-card h1 {
        font-size: 28px;
    }
}