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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: sticky;
    top: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    margin: 20px 5% 0;
    border-radius: 12px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 5%;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.98);
    margin-left: 8%;
    margin-top: -120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 85%;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8f4f8;
}

.intro-offset {
    padding: 120px 8%;
    background-color: #ffffff;
}

.intro-block {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-visual {
    flex: 0 0 45%;
    position: relative;
    margin-left: -60px;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #f0f4f8;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.2;
    font-weight: 700;
}

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

.services-creative {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.section-header-offset {
    max-width: 600px;
    margin-left: 12%;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 800;
}

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

.services-grid-asymmetric {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 480px;
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 380px;
}

.card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 320px;
}

.service-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

.service-info {
    padding: 32px;
}

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-block-offset {
    padding: 120px 8%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 100px;
}

.trust-content {
    flex: 1;
    max-width: 620px;
    margin-right: -40px;
    z-index: 2;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.2;
    font-weight: 700;
}

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

.ref-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

.trust-visual {
    flex: 0 0 45%;
    position: relative;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #f0f4f8;
}

.form-section-creative {
    padding: 120px 8%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.form-wrapper-offset {
    max-width: 680px;
    margin-left: auto;
    margin-right: 15%;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-wrapper-offset h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.form-wrapper-offset > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit {
    padding: 16px 32px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 12px;
}

.form-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 80px 8%;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-left: 5px solid #e74c3c;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

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

.footer-col-wide {
    flex: 2;
    min-width: 280px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e74c3c;
    font-weight: 700;
}

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #e74c3c;
    font-weight: 700;
}

.footer-references p {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.cookie-content a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-hero {
    padding: 140px 8% 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
}

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

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

.about-story {
    padding: 100px 8%;
    background-color: #ffffff;
}

.story-block-left,
.story-block-right {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 100px;
}

.story-block-right {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 48%;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #f0f4f8;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

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

.team-values {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.team-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 800;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #e74c3c;
    font-weight: 700;
}

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

.approach-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 100px;
}

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

.service-detail-visual {
    flex: 0 0 48%;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #f0f4f8;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-detail-price {
    margin: 32px 0 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    border-left: 4px solid #e74c3c;
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    color: #e74c3c;
    font-weight: 800;
}

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

.service-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.service-cta-section p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 42px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    border-left: 5px solid #e74c3c;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 5px solid #f39c12;
    border-radius: 4px;
}

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

.thanks-section {
    padding: 120px 8%;
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

.thanks-content > p {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service-info {
    margin-bottom: 50px;
    padding: 24px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    border-radius: 8px;
}

.thanks-service-info p {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next-steps ol {
    margin-left: 24px;
}

.thanks-next-steps li {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #3498db;
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 8%;
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 48px;
    color: #2c3e50;
    font-weight: 800;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 60px 5%;
    }

    .hero-content-offset {
        margin: 0;
        max-width: 100%;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
        margin-top: 40px;
    }

    .intro-block,
    .story-block-left,
    .story-block-right,
    .service-detail-card,
    .trust-block-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-visual {
        margin-left: 0;
    }

    .nav-floating {
        padding: 16px 24px;
        margin: 16px 3%;
    }

    .nav-links {
        gap: 20px;
    }

    .service-card {
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

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

    .section-header-offset h2 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

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

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

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