* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.header {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    letter-spacing: 1px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #2c3e50;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.hero-right {
    flex: 1;
    background-color: #34495e;
}

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

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

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

.cta-button-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #7f8c8d;
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.intro-right {
    flex: 1;
    background-color: #ecf0f1;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.price {
    padding: 0 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

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

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

.form-right {
    flex: 1;
    background-color: #34495e;
}

.form-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.trust-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
}

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

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

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

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

.btn-accept {
    padding: 0.7rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    padding: 0.7rem 1.5rem;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.content-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.content-left {
    flex: 1;
    padding: 2rem 3rem;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.content-right {
    flex: 1;
    background-color: #ecf0f1;
}

.content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.expertise-split {
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
}

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

.expertise-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.expertise-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #34495e;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.expertise-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.expertise-right {
    flex: 1;
    background-color: #34495e;
}

.expertise-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-detail-left {
    flex: 1;
    background-color: #f8f9fa;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-detail-right {
    flex: 1;
    padding: 3rem;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.price-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.price-label {
    font-size: 1rem;
    color: #555;
    margin-right: 0.5rem;
}

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

.process-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 0 1 calc(20% - 1.5rem);
    min-width: 180px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    padding: 1.5rem;
    background-color: #e3f2fd;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-note a {
    color: #2980b9;
    text-decoration: underline;
}

.contact-right {
    flex: 1;
    background-color: #34495e;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.map-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

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

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page strong {
    color: #2c3e50;
}

.no-link {
    color: #555;
    text-decoration: none;
}

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

.cookie-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .content-split,
    .expertise-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

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

    .hero-text h1 {
        font-size: 2rem;
    }

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