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

.ad-notice {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-cta-btn {
    background: #e74c3c;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta-btn:hover {
    background: #c0392b;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 5% 80px 8%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #5a6c7d;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.hero-cta:hover {
    background: #c0392b;
}

.hero-image-offset {
    width: 55%;
    position: relative;
    overflow: hidden;
    background: #e8eaed;
}

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

.intro-layered {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.intro-text-side {
    flex: 1;
}

.intro-text-side h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text-side p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.intro-visual-block {
    flex: 1;
    background: #f4f5f7;
}

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

.services-asymmetric {
    padding: 120px 6% 100px;
    background: #f9fafb;
}

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

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

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

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

.card-small {
    flex: 1 1 calc(40% - 15px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e8eaed;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 24px 28px 12px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 28px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

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

.service-select {
    margin: 0 28px 28px;
    padding: 14px 0;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #1a252f;
}

.service-card.selected {
    border: 3px solid #e74c3c;
}

.trust-offset {
    display: flex;
    padding: 100px 0;
    background: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 0 8% 0 10%;
}

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

.trust-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
    line-height: 1.7;
}

.testimonials-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-block {
    background: #f9fafb;
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 15px;
    color: #5a6c7d;
    font-weight: 600;
}

.trust-visual {
    flex: 1;
    background: #f4f5f7;
}

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

.form-asymmetric {
    padding: 100px 10%;
    background: #2c3e50;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-form-offset {
    flex: 1.2;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

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

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #c0392b;
}

.approach-irregular {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    background: #f9fafb;
}

.approach-block-left {
    flex: 1;
    padding-top: 40px;
}

.approach-block-left h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-block-left p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-block-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.approach-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ffffff;
    padding: 80px 8% 40px;
}

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

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 15px;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c0392b;
}

.cookie-reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.cookie-link {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
}

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

.page-header {
    padding: 100px 8% 60px;
    background: #2c3e50;
    color: #ffffff;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 10%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.page-content li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 8%;
    background: #f9fafb;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 8%;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.thanks-cta:hover {
    background: #c0392b;
}

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

    .hero-content-offset,
    .hero-image-offset {
        width: 100%;
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

    .intro-layered,
    .trust-offset,
    .form-asymmetric,
    .approach-irregular,
    .contact-grid {
        flex-direction: column;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .nav-links {
        display: none;
    }

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