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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.page-container {
    display: flex;
    min-height: calc(100vh - 37px);
}

.sidebar {
    width: 280px;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.logo-area {
    margin-bottom: 40px;
}

.logo-area h2 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.tagline {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.4;
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
    font-size: 15px;
}

.nav-link:hover {
    background-color: #34495e;
}

.nav-link.active {
    background-color: #3498db;
    font-weight: 500;
}

.sidebar-cta {
    background-color: #34495e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: auto;
}

.sidebar-cta h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.sidebar-cta p {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 16px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    text-align: center;
}

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

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    margin-top: 24px;
}

.sidebar-footer a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.sidebar-footer a:hover {
    color: #ecf0f1;
}

.main-content {
    flex: 1;
    background-color: #fff;
}

.hero-section {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 48px 48px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 18px;
    color: #ecf0f1;
    max-width: 600px;
}

.intro-section {
    padding: 80px 48px;
    background-color: #f8f9fa;
}

.content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

.intro-text {
    flex: 1;
}

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

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

.intro-image {
    flex: 0 0 400px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-section {
    padding: 80px 48px;
    background-color: #fff;
}

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

.expertise-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.expertise-card h3 {
    font-size: 20px;
    padding: 20px 20px 12px;
    color: #2c3e50;
}

.expertise-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.process-section {
    padding: 80px 48px;
    background-color: #ecf0f1;
}

.process-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.process-image {
    flex: 0 0 450px;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-text {
    flex: 1;
}

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

.process-text p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

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

.process-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.process-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.text-link:hover {
    text-decoration: underline;
}

.testimonial-section {
    padding: 80px 48px;
    background-color: #fff;
}

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

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    padding: 80px 48px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #3498db;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    padding: 40px 48px;
    background-color: #fff3cd;
    border-top: 1px solid #ffeaa7;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
    text-align: center;
}

.page-header {
    padding: 60px 48px 40px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

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

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-overview {
    padding: 60px 48px;
}

.service-item {
    max-width: 900px;
    margin: 0 auto 32px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.service-header h2 {
    font-size: 24px;
    color: #2c3e50;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.service-body {
    padding: 24px 32px;
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #555;
}

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

.pricing-info {
    padding: 40px 48px;
    background-color: #f8f9fa;
}

.pricing-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    color: #2c3e50;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-section {
    padding: 60px 48px;
    background-color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.btn-large {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 16px 48px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

.about-intro {
    padding: 60px 48px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-content img {
    flex: 0 0 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.about-text {
    flex: 1;
}

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

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

.expertise-detail {
    padding: 60px 48px;
    background-color: #f8f9fa;
}

.expertise-detail h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.expertise-blocks {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expertise-block {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.expertise-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.approach-section {
    padding: 60px 48px;
    background-color: #fff;
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

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

.approach-image {
    flex: 0 0 400px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 60px 48px;
    background-color: #ecf0f1;
}

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

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.value-item {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.location-section {
    padding: 60px 48px;
    background-color: #fff;
    text-align: center;
}

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

.location-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    padding: 60px 48px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-image {
    flex: 0 0 450px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.directions-section {
    padding: 40px 48px;
    background-color: #f8f9fa;
}

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

.directions-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta {
    padding: 60px 48px;
    background-color: #fff;
    text-align: center;
}

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

.contact-cta p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 48px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-next ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-next li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 48px;
}

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

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

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

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

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

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

.legal-link {
    color: #3498db;
    word-break: break-all;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    background-color: #27ae60;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-cookie-secondary {
    background-color: transparent;
    color: #ecf0f1;
    padding: 12px 32px;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

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

@media (max-width: 1024px) {
    .page-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
    }

    .expertise-grid,
    .values-grid {
        flex-direction: column;
    }

    .content-wrapper,
    .process-content,
    .about-content,
    .approach-layout,
    .contact-info {
        flex-direction: column;
    }

    .intro-image,
    .process-image,
    .approach-image,
    .contact-image {
        flex: 1;
        width: 100%;
    }

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