* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

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

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

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

.header-asymmetric {
    position: relative;
    padding: 1rem 2rem;
    background: #f8f9fa;
}

.ad-notice {
    position: absolute;
    top: 0.5rem;
    right: 2rem;
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

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

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
    margin-left: 3rem;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-image-wrapper {
    flex: 1;
    position: relative;
    margin-top: -2rem;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8e8e8;
}

.intro-asymmetric {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-top: 3rem;
}

.intro-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.intro-right {
    flex: 1;
    margin-top: -3rem;
}

.intro-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-creative {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 5rem;
    color: #1a1a1a;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4a4a4a;
}

.price-tag {
    padding: 0 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e74c3c;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: calc(100% - 3rem);
}

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

.card-elevated {
    transform: translateY(-1rem);
}

.card-shifted {
    transform: translateX(1.5rem);
}

.card-overlap {
    margin-top: -2rem;
}

.card-tilted {
    transform: rotate(-1deg);
}

.card-floating {
    margin-left: 2rem;
}

.testimonial-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.testimonial-block {
    flex: 1;
    padding: 2rem;
    background: #ecf0f1;
    border-radius: 8px;
    position: relative;
    margin-right: -3rem;
    z-index: 2;
}

.testimonial-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    display: block;
    font-size: 1rem;
    color: #666;
    font-style: normal;
    margin-top: 1rem;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.form-creative {
    background: #2c3e50;
    padding: 5rem 2rem;
    margin-top: 6rem;
}

.form-wrapper-asymmetric {
    max-width: 600px;
    margin: 0 auto 0 10%;
}

.form-wrapper-asymmetric h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-wrapper-asymmetric > p {
    color: #ecf0f1;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #e74c3c;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.info-diagonal {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: #f8f9fa;
    transform: skewY(-2deg);
}

.info-content {
    transform: skewY(2deg);
}

.info-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.footer-creative {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.disclaimer p {
    font-size: 0.875rem;
    color: #bbb;
    line-height: 1.6;
}

.about-hero-offset {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text-primary {
    flex: 1;
    padding-top: 4rem;
}

.about-text-primary h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text-primary p {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-image-diagonal {
    flex: 1;
    transform: translateY(-2rem) rotate(2deg);
}

.about-image-diagonal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8e8e8;
}

.philosophy-asymmetric {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-block-left {
    flex: 1.2;
}

.philosophy-block-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-block-left p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-image-right {
    flex: 1;
    margin-left: -2rem;
}

.philosophy-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

.team-creative {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title-tilted {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    transform: translateX(2rem) rotate(-1deg);
    color: #1a1a1a;
}

.team-layout-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    width: calc(50% - 1rem);
    min-width: 280px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member .role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4a4a4a;
    line-height: 1.6;
}

.member-offset-1 {
    transform: translateY(1rem);
}

.member-offset-2 {
    transform: translateY(-1rem);
}

.member-offset-3 {
    transform: translateX(1.5rem);
}

.member-offset-4 {
    transform: translateX(-1.5rem);
}

.values-diagonal {
    background: #2c3e50;
    padding: 4rem 2rem;
    margin-top: 4rem;
    transform: skewY(-2deg);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.values-content h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 2rem;
}

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

.values-list li {
    font-size: 1.25rem;
    color: #ecf0f1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.services-hero {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-layout {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-image-wrap {
    flex: 1;
}

.service-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-offset-1 {
    transform: translateX(2rem);
}

.service-offset-2 {
    transform: translateX(-2rem);
}

.service-offset-3 {
    transform: translateX(3rem);
}

.service-offset-4 {
    transform: translateX(-1rem);
}

.service-offset-5 {
    transform: translateX(1.5rem);
}

.pricing-info-block {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.pricing-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-info-block p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-hero {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(3rem);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

.info-block-diagonal {
    background: #ecf0f1;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

.info-content-centered h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-content-centered p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.thanks-hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2ecc71;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: #fff;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

.legal-content em {
    display: block;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .testimonial-offset,
    .philosophy-asymmetric,
    .contact-layout-asymmetric,
    .thanks-hero,
    .about-hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .service-card {
        width: 100%;
    }

    .team-member {
        width: 100%;
    }

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

    .form-wrapper-asymmetric {
        margin: 0 auto;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .card-elevated,
    .card-shifted,
    .card-overlap,
    .card-tilted,
    .card-floating,
    .member-offset-1,
    .member-offset-2,
    .member-offset-3,
    .member-offset-4,
    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        transform: none;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }
}