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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #2c5f7d;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafb;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1f4a63;
}

.intro-split {
    display: flex;
}

.intro-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    padding: 4rem;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a3a4d;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a3a4d;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1f4a63;
}

.form-split {
    display: flex;
    background: #f8fafb;
}

.form-left {
    flex: 1;
    padding: 4rem;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1f4a63;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff5e6;
    border-top: 2px solid #f0c78a;
    border-bottom: 2px solid #f0c78a;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8b5a00;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.main-footer {
    background: #1a3a4d;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a4a5d;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a4d;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #4CAF50;
    color: #ffffff;
}

.btn-accept:hover {
    background: #45a049;
}

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

.btn-reject:hover {
    background: #da190b;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f7d 0%, #1a4d6f 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

.detail-left,
.detail-right {
    flex: 1;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.detail-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7d;
}

.cta-section {
    padding: 5rem 2rem;
    background: #f8fafb;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a4d;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1f4a63;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-section {
    padding: 5rem 2rem;
    background: #f8fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a3a4d;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f7d;
}

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

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.process-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a4d;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2c5f7d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a3a4d;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.experience-section {
    padding: 5rem 2rem;
    background: #f8fafb;
}

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

.experience-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a3a4d;
    text-align: center;
}

.experience-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a4d;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f7d;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-placeholder p {
    color: #666;
    font-weight: 600;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f8fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a3a4d;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2c5f7d;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a3a4d;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.1rem;
    padding: 1.5rem;
    background: #f8fafb;
    border-radius: 8px;
    color: #2c5f7d;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3a4d;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.step {
    flex: 1;
    padding: 2rem;
    background: #f8fafb;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2c5f7d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a3a4d;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1f4a63;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2c5f7d;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f7d;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #2c5f7d;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a3a4d;
}

.update-date {
    color: #999;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3a4d;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c5f7d;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-section a {
    color: #2c5f7d;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8fafb;
    font-weight: 600;
    color: #1a3a4d;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .process-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .values-section h2 {
        font-size: 2rem;
    }

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

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .steps-grid {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
}