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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #eceff1;
}

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

.cta-button {
    display: inline-block;
    background-color: #d9534f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.info-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.info-text p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-visual {
    flex: 1;
    background-color: #eceff1;
}

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

.services-grid {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #546e7a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 22px;
    color: #1a3a52;
    padding: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    padding: 0 24px;
    line-height: 1.7;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d9534f;
    padding: 20px 24px 12px;
}

.select-service {
    background-color: #1a3a52;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    margin: 12px 24px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2c5473;
}

.form-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: stretch;
}

.form-image {
    flex: 1;
    background-color: #eceff1;
}

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

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

.form-container h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 15px;
    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: #4a90e2;
}

.submit-button {
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #c9302c;
}

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

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.trust-item {
    flex: 1;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #ffffff;
}

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

.footer {
    background-color: #263238;
    color: #b0bec5;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #37474f;
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #78909c;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263238;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
}

.cookie-content p {
    color: #b0bec5;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

.cookie-accept {
    background-color: #4caf50;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #b0bec5;
    border: 1px solid #546e7a;
}

.cookie-reject:hover {
    background-color: #37474f;
    color: #ffffff;
}

.page-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5473 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 40px 80px;
}

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

.page-hero p {
    font-size: 20px;
    color: #b0bec5;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #eceff1;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.approach-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 60px;
    font-weight: 700;
}

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

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

.approach-item h3 {
    font-size: 22px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 600;
}

.approach-item p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.experience-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.experience-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-image {
    flex: 1;
    background-color: #eceff1;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 32px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-section p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

.services-detail {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d9534f;
    margin: 24px 0 16px;
}

.cta-section {
    background-color: #1a3a52;
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.contact-content {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 6px;
}

.email-display {
    font-weight: 500;
    color: #1a3a52;
}

.contact-map {
    flex: 1;
    background-color: #eceff1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-notes {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.contact-notes h2 {
    text-align: center;
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.note-item {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.note-item h3 {
    font-size: 20px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 600;
}

.note-item p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-content {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-box {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    max-width: 700px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-box p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.return-button {
    display: inline-block;
    background-color: #1a3a52;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.return-button:hover {
    background-color: #2c5473;
}

.legal-content {
    max-width: 1000px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a3a52;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-section ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-split,
    .info-section,
    .form-section,
    .about-split,
    .experience-section,
    .service-detail-item,
    .contact-content {
        flex-direction: column;
    }

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

    .hero-content,
    .form-container {
        padding-right: 0;
    }

    .trust-content,
    .notes-grid {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }
}