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

.ad-disclosure {
    background: #F39C12;
    color: #FFFFFF;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
}

.header-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #2C3E50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 35px;
}

.header-right a {
    color: #34495E;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #3498DB;
}

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

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    display: flex;
}

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

.cta-primary {
    display: inline-block;
    background: #3498DB;
    color: #FFFFFF;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980B9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498DB;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3498DB;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498DB;
    color: #FFFFFF;
}

.intro-split {
    display: flex;
    padding: 100px 0;
}

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

.intro-image {
    flex: 1;
    display: flex;
}

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

.intro-content {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1A1A1A;
    font-weight: 700;
}

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

.services-intro {
    padding: 100px 5%;
    background: #F8F9FA;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1A1A1A;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666666;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    background: #FFFFFF;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 350px;
    display: flex;
}

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

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1A1A1A;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27AE60;
    margin: 25px 0;
}

.select-service-btn {
    background: #27AE60;
    color: #FFFFFF;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 8%;
    background: #FFFFFF;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1A1A1A;
    font-weight: 700;
}

.process-split {
    display: flex;
    gap: 40px;
}

.process-item {
    flex: 1;
    padding: 40px 30px;
    background: #F8F9FA;
    border-left: 4px solid #3498DB;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498DB;
    margin-bottom: 20px;
    opacity: 0.3;
}

.process-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1A1A1A;
    font-weight: 700;
}

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

.contact-form-section {
    padding: 100px 5%;
    background: #2C3E50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 38px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    font-size: 17px;
    color: #BDC3C7;
}

.service-form {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #D5D8DC;
    border-radius: 5px;
    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: #3498DB;
}

.submit-btn {
    width: 100%;
    background: #3498DB;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980B9;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 8%;
    background: #1A1A1A;
    color: #FFFFFF;
}

.footer-column {
    flex: 1;
    margin-right: 40px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #BDC3C7;
}

.footer-column a {
    display: block;
    color: #BDC3C7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498DB;
}

.disclaimer {
    background: #F8F9FA;
    padding: 30px 8%;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495E;
    color: #FFFFFF;
    padding: 25px 5%;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background: #27AE60;
    color: #FFFFFF;
}

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

.cookie-btn.reject {
    background: #E74C3C;
    color: #FFFFFF;
}

.cookie-btn.reject:hover {
    background: #C0392B;
}

.page-hero {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #FFFFFF;
}

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

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

.about-split {
    display: flex;
    padding: 100px 0;
}

.about-content {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1A1A1A;
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    display: flex;
}

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

.values-section {
    padding: 100px 8%;
    background: #F8F9FA;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1A1A1A;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-item {
    flex: 1;
    background: #FFFFFF;
    padding: 40px 30px;
    border-top: 4px solid #3498DB;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1A1A1A;
    font-weight: 700;
}

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

.experience-split {
    display: flex;
    padding: 100px 0;
    background: #FFFFFF;
}

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

.experience-image {
    flex: 1;
    display: flex;
}

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

.experience-content {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1A1A1A;
    font-weight: 700;
}

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

.experience-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.experience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: 700;
    font-size: 20px;
}

.cta-section {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(135deg, #3498DB 0%, #8E44AD 100%);
    color: #FFFFFF;
}

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

.services-detailed {
    padding: 80px 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1A1A1A;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.service-price-box {
    font-size: 28px;
    font-weight: 700;
    color: #27AE60;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    min-height: 450px;
    display: flex;
}

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

.contact-split {
    display: flex;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
    padding: 60px 8%;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1A1A1A;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2C3E50;
    font-weight: 700;
}

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

.contact-map {
    flex: 1;
    display: flex;
}

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

.additional-info-section {
    padding: 80px 8%;
    background: #F8F9FA;
}

.additional-info-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1A1A1A;
    font-weight: 700;
}

.info-blocks {
    display: flex;
    gap: 30px;
}

.info-block {
    flex: 1;
    background: #FFFFFF;
    padding: 35px;
    border-left: 4px solid #3498DB;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1A1A1A;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.thanks-section {
    padding: 150px 8%;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27AE60;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#selectedServiceInfo {
    font-weight: 600;
    color: #3498DB;
    font-size: 19px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1A1A1A;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #7F8C8D;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #2C3E50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #34495E;
    font-weight: 700;
}

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

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #3498DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card,
    .about-split,
    .experience-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .process-split,
    .values-grid,
    .info-blocks {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .services-header h2,
    .process-section h2 {
        font-size: 32px;
    }

    .header-right {
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-split {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .intro-content,
    .service-content,
    .about-content,
    .experience-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 6%;
    }

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

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

    .service-form {
        padding: 35px 25px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 30px;
    }
}