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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e8ecef;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.intro-image {
    flex: 1;
    background-color: #e8ecef;
}

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

.intro-content {
    flex: 1;
    padding: 0 60px;
}

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

.intro-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.services-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    background-color: #e8ecef;
    min-height: 320px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.btn-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
    align-self: flex-start;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    padding: 12px 20px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    font-weight: 500;
    color: #2c3e50;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

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

.trust-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #bdc3c7;
}

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

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

.footer {
    background-color: #34495e;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #4a5f7f;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

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

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

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
}

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.story-image {
    flex: 1;
    background-color: #e8ecef;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.values-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.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: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.approach-section {
    padding: 100px 40px;
}

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

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    background-color: #e8ecef;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.team-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    color: #5a6c7d;
}

.services-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

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

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

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 600;
}

.service-price-box {
    background-color: #e8f4f8;
    padding: 16px 24px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

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

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

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #667eea;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
}

.contact-section {
    padding: 80px 40px;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8ecef;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.map-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

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

.map-info p {
    font-size: 17px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-info {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 16px;
    color: #2c3e50;
}

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

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

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.thanks-next ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 600;
}

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

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

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

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

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

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

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

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card,
    .form-container-split,
    .trust-grid,
    .story-split,
    .approach-split,
    .service-detail,
    .contact-split,
    .footer-content {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .hero-text h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .intro-content,
    .approach-text {
        padding: 0;
    }

    .thanks-actions {
        flex-direction: column;
    }
}