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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

.navbar {
    padding: 16px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

.nav-menu a:hover {
    color: #3498db;
}

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #2980b9;
}

.intro-cards {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

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

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.info-card p {
    color: #555555;
    line-height: 1.7;
}

.services-highlight {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    color: #555555;
    margin-bottom: 20px;
    flex: 1;
}

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

.service-select {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #2980b9;
}

.why-choose {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.reasons-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.reason-item {
    flex: 1;
    min-width: 260px;
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.reason-item p {
    color: #555555;
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
    font-size: 18px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    padding: 80px 20px 60px;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

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

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

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

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

.service-detail-content p {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-block {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.cta-bottom {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-bottom h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #ecf0f1;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

.about-text p {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    color: #555555;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    font-size: 18px;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #2c3e50;
}

.member-role {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 12px;
    font-weight: 600;
}

.member-bio {
    color: #555555;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.step-item {
    flex: 1;
    min-width: 260px;
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    color: #555555;
    line-height: 1.7;
}

.why-different {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-different h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.why-different p {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.contact-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

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

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    color: #555555;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    color: #555555;
    line-height: 1.7;
}

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

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.map-placeholder {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.map-box {
    padding: 80px 40px;
    background-color: #e8eaed;
    border-radius: 8px;
    text-align: center;
}

.map-text {
    color: #555555;
    font-size: 16px;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    color: #555555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-message {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirm {
    margin-bottom: 30px;
}

.selected-service {
    font-size: 16px;
    color: #2c3e50;
    padding: 12px 20px;
    background-color: #e8f8f5;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555555;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.legal-intro {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-page p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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

    .section-title,
    .page-header h1 {
        font-size: 28px;
    }
}