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

:root {
    --primary-color: #1a3a52;
    --accent-color: #c9a961;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-subtle: #e5e3dc;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

.ad-disclosure {
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: relative;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 80vh;
    position: relative;
    padding: 60px 5%;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-offset {
    width: 45%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-asymmetric h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.hero-visual-overlap {
    width: 55%;
    position: absolute;
    right: 0;
    top: 10%;
    height: 90%;
}

.hero-visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 0 0 4px;
}

.intro-offset {
    padding: 100px 5%;
    background: var(--bg-white);
}

.intro-narrow {
    max-width: 720px;
    margin: 0 0 0 8%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 500;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-creative {
    padding: 100px 5%;
    background: var(--bg-light);
}

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

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header-left p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background: var(--bg-white);
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 60px;
}

.service-card.offset-3 {
    margin-top: 30px;
}

.service-card.offset-4 {
    margin-top: 90px;
}

.service-card.offset-5 {
    margin-top: 15px;
}

.service-card.offset-6 {
    margin-top: 45px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 22px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    width: 100%;
}

.select-service:hover {
    background: var(--accent-color);
}

.form-section-irregular {
    padding: 100px 5%;
    background: var(--bg-white);
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-block {
    width: 35%;
}

.form-intro-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.main-form {
    width: 55%;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 4px;
}

.form-row {
    margin-bottom: 25px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-white);
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.service-display {
    padding: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    color: var(--text-light);
    font-style: italic;
}

.service-display.selected {
    color: var(--primary-color);
    font-weight: 500;
    font-style: normal;
}

.cta-submit {
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    width: 100%;
}

.cta-submit:hover {
    background: var(--primary-color);
}

.philosophy-overlap {
    display: flex;
    padding: 120px 5%;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.philosophy-content {
    width: 50%;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.philosophy-visual {
    width: 45%;
    background: var(--bg-white);
}

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

.approach-stacked {
    padding: 100px 5%;
    background: var(--bg-white);
}

.approach-stacked h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

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

.step {
    margin-bottom: 60px;
    padding-left: 100px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0.3;
}

.step h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.footer-corporate {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 25px 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.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: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-btn.reject:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-container ul,
.page-container ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 5%;
}

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

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-page {
    padding: 80px 5%;
}

.services-content {
    max-width: 1100px;
    margin: 0 auto;
}

.services-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 60px;
}

.service-detail {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 4px;
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail .service-price {
    font-size: 22px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-page {
    padding: 80px 5%;
}

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

.about-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-visual-overlap {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .service-card {
        width: 100%;
    }

    .form-section-irregular {
        flex-direction: column;
    }

    .form-intro-block,
    .main-form {
        width: 100%;
    }

    .philosophy-overlap {
        flex-direction: column;
    }

    .philosophy-content,
    .philosophy-visual {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
    }

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

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