* {
    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: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 75vh;
    padding: 80px 5% 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding: 60px 40px 40px 0;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.hero-visual-float {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 45%;
    height: 70%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(2deg);
}

.hero-visual-float img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

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

.intro-offset {
    display: flex;
    padding: 100px 5% 80px;
    gap: 60px;
    align-items: flex-start;
    background: #ffffff;
}

.intro-text-block {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
}

.intro-stat-cards {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px 28px;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-card-offset {
    margin-left: 50px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.services-creative {
    padding: 100px 5%;
    background: #f8f9fa;
}

.section-header-float {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 60px;
}

.section-header-float h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-large {
    width: calc(60% - 15px);
}

.service-medium {
    width: calc(40% - 15px);
}

.service-small {
    width: calc(35% - 15px);
}

.service-medium-alt {
    width: calc(38% - 15px);
}

.service-premium {
    width: calc(62% - 15px);
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.service-premium .service-info h3,
.service-premium .service-info p {
    color: #ffffff;
}

.service-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-premium .service-price {
    color: #f1c40f;
}

.btn-select-service {
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.service-premium .btn-select-service {
    background: #f39c12;
}

.service-premium .btn-select-service:hover {
    background: #e67e22;
}

.why-section-layered {
    display: flex;
    padding: 90px 5%;
    gap: 70px;
    align-items: center;
    background: #ffffff;
}

.why-content-left {
    flex: 1;
    padding-right: 30px;
}

.why-content-left h2 {
    font-size: 38px;
    margin-bottom: 26px;
    color: #2c3e50;
}

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

.why-visual-right {
    flex: 0.9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: rotate(-1deg);
    background-color: #d6d6d6;
}

.why-visual-right img {
    width: 100%;
    height: auto;
}

.form-section-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    padding: 24px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    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: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

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

.btn-accept:hover {
    transform: scale(1.05);
}

.btn-reject {
    background: transparent;
    color: #ecf0f1;
    border: 2px solid #95a5a6;
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 80px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detail-section {
    padding: 80px 5%;
    background: #ffffff;
}

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

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

.service-detail-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e0e0e0;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0 20px;
}

.cta-services-bottom {
    padding: 80px 5%;
    text-align: center;
    background: #f8f9fa;
}

.cta-services-bottom h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-services-bottom p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 28px;
}

.about-hero-offset {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-text {
    flex: 1.2;
}

.about-hero-text h1 {
    font-size: 50px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero-text p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    background-color: #d6d6d6;
}

.about-hero-image img {
    width: 100%;
    height: auto;
}

.about-content-layered {
    padding: 100px 5%;
    background: #ffffff;
}

.about-block {
    max-width: 700px;
    margin-bottom: 60px;
}

.about-block-left {
    margin-right: auto;
}

.about-block-right {
    margin-left: auto;
}

.about-block-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.values-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.about-cta-diagonal {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.about-cta-diagonal h2 {
    font-size: 38px;
    margin-bottom: 14px;
}

.about-cta-diagonal p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.contact-hero {
    padding: 80px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-content-offset {
    display: flex;
    gap: 70px;
    padding: 80px 5%;
    align-items: flex-start;
    background: #ffffff;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.email-display {
    background: #f8f9fa;
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-block;
    font-family: monospace;
    font-size: 15px;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    background-color: #d6d6d6;
}

.contact-visual img {
    width: 100%;
    height: auto;
}

.contact-note-section {
    padding: 60px 5%;
    background: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

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

.thanks-section {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
    align-items: center;
    min-height: 60vh;
    background: #ffffff;
}

.thanks-content {
    flex: 1;
}

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

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

.service-confirmation {
    background: #e8f5e9;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.service-confirmation p {
    color: #2c3e50;
    font-size: 16px;
}

.thanks-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    background-color: #d6d6d6;
}

.thanks-visual img {
    width: 100%;
    height: auto;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

.legal-page ul,
.legal-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    color: #95a5a6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual-float {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 30px;
    }

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

    .intro-offset,
    .why-section-layered,
    .service-detail-card,
    .about-hero-offset,
    .contact-content-offset,
    .thanks-section {
        flex-direction: column;
    }

    .why-visual-right {
        transform: none;
    }

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

    .service-large,
    .service-medium,
    .service-small,
    .service-medium-alt,
    .service-premium {
        width: 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
}
