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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.site-header {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.hero-section {
    display: flex;
    flex-direction: column-reverse;
    background-color: #16213e;
    color: #ffffff;
}

.hero-content {
    padding: 80px 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #0f3460;
}

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

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

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a5568;
}

.intro-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.services-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.services-intro p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: #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 {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8ecef;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #1a1a2e;
}

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

.service-price {
    padding: 15px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #e94560;
}

.service-link {
    display: block;
    padding: 15px 20px 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.approach-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #cbd5e0;
}

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

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

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a2e;
}

.contact-form-section > p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-section {
    flex: 1 1 250px;
}

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

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

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

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

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

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

.footer-disclaimer {
    padding: 20px;
    background-color: #0f3460;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3e50;
    color: #8c99a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
}

.thanks-content .back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-content .back-button:hover {
    background-color: #2980b9;
}

.about-hero {
    background-color: #16213e;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.about-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8ecef;
}

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

.services-page-hero {
    background-color: #0f3460;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

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

.services-detail {
    padding: 80px 20px;
}

.service-detail-item {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-detail-item h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-detail-item .price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 20px;
}

.service-detail-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.service-detail-item ul {
    margin: 20px 0 20px 30px;
}

.service-detail-item ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-hero {
    background-color: #16213e;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-box {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

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

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

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

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

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

    .cookie-content {
        flex-direction: column;
    }

    .main-nav {
        gap: 15px;
    }
}