* {
    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-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo-area {
    flex: 1;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.ad-notice {
    padding: 8px 16px;
    background-color: #fff3cd;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

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

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

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

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

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 152, 219, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.cards-grid-2 {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cards-grid-2.reverse {
    flex-direction: row-reverse;
}

.card-intro {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.card-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.card-visual {
    flex: 1;
    background-color: #e8eaf6;
}

.card-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-modern {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.cards-grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 300px;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    background-color: #e8eaf6;
}

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

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.service-body a {
    color: #3498db;
    text-decoration: none;
}

.service-body a:hover {
    text-decoration: underline;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

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

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.card-text {
    flex: 1;
    padding: 40px;
}

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

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

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

.form-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    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: #3498db;
}

.form-group input[readonly] {
    background-color: #e8eaf6;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #856404;
    border-radius: 4px;
}

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

.references-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.lead {
    font-size: 20px;
    line-height: 1.5;
}

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

.card-content {
    flex: 1;
    padding: 40px;
}

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

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

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

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

.team-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    min-width: 280px;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.role {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

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

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

.approach-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    min-width: 300px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    margin-bottom: 10px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 22px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card-center {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 16px 40px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #667eea;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eaf6;
}

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

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

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

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

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

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.btn-select-inline {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

.email-display {
    font-weight: 600;
    color: #3498db;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table td {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.contact-map-card {
    flex: 1;
    min-width: 350px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

.legal-intro {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.legal-page strong {
    color: #2c3e50;
}

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

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

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

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

.thanks-actions {
    margin-top: 40px;
}

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

    .cards-grid-2,
    .cards-grid-2.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .team-card {
        flex: 1 1 100%;
    }

    .approach-card {
        flex: 1 1 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}