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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px 80px 80px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    background: #f8f9fa;
}

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

.intro-asymmetric {
    display: flex;
    align-items: stretch;
    gap: 60px;
    padding: 100px 80px;
    background: #fafbfc;
}

.intro-block-small {
    flex: 0.4;
    padding-top: 40px;
}

.intro-block-small h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-block-small p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.intro-image-large {
    flex: 0.6;
    background: #e8ebed;
    position: relative;
}

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

.services-creative {
    padding: 120px 80px;
    background: #ffffff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.card-large {
    flex: 0 0 calc(60% - 15px);
}

.card-offset {
    flex: 0 0 calc(40% - 15px);
    margin-top: 60px;
}

.card-small {
    flex: 0 0 calc(33% - 20px);
}

.card-wide {
    flex: 0 0 calc(50% - 15px);
}

.card-medium {
    flex: 0 0 calc(35% - 15px);
    margin-top: -40px;
}

.card-corner {
    flex: 0 0 calc(65% - 15px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #ecf0f1;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 20px;
    color: #666;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.form-container-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 100px;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container-offset > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

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

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

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

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

.selected-service-display {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 30px;
}

.selected-service-display strong {
    color: #2c3e50;
}

.selected-service-display span {
    color: #e74c3c;
    font-weight: 600;
}

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 80px;
    background: #ffffff;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.link-inline {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
    text-decoration: underline;
}

.about-visual {
    flex: 1;
    background: #f0f2f5;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.disclaimer-section {
    padding: 60px 80px;
    background: #fef9e7;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 70px 80px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

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

.footer-block p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

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

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

.footer-block ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 60px 40px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .services-creative {
        padding: 80px 40px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-card {
        flex: 0 0 100% !important;
        margin-top: 0 !important;
    }

    .form-section-diagonal {
        padding: 60px 40px;
    }

    .form-container-offset {
        margin-right: 0;
        padding: 40px;
    }

    .about-split {
        flex-direction: column;
        padding: 60px 40px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .hero-content-left {
        padding: 40px 20px;
    }

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

    .services-creative,
    .form-section-diagonal,
    .about-split,
    .disclaimer-section,
    .footer-asymmetric {
        padding: 40px 20px;
    }

    .form-container-offset {
        padding: 30px 20px;
    }
}