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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #d4af37;
    --text-dark: #1f1f1f;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-asymmetric {
    background-color: var(--background-white);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-block .logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-floating a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--background-light);
    padding: 4px 10px;
    border-radius: 3px;
    margin-right: 10px;
}

.hero-asymmetric {
    position: relative;
    overflow: hidden;
}

.hero-visual-offset {
    position: relative;
    width: 87%;
    margin-left: 8%;
    height: 580px;
    overflow: hidden;
    border-radius: 0 0 0 120px;
    background-color: var(--background-light);
}

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

.hero-overlay-content {
    position: absolute;
    bottom: 60px;
    left: -100px;
    background-color: rgba(26, 58, 82, 0.92);
    color: white;
    padding: 50px 60px;
    max-width: 580px;
    border-radius: 8px;
}

.hero-overlay-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-overlay-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-offset {
    padding: 120px 40px 80px;
    background-color: var(--background-white);
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
}

.text-block-rotated {
    max-width: 700px;
    margin-left: 100px;
}

.text-block-rotated h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.text-block-rotated p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-creative {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.services-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    align-items: stretch;
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card.offset-bottom {
    margin-left: 120px;
}

.service-card.offset-left {
    margin-right: 100px;
}

.service-card.offset-right {
    margin-left: 80px;
}

.service-card.offset-center {
    margin-left: 50px;
}

.service-image-wrapper {
    flex: 0 0 45%;
    background-color: var(--background-light);
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-details .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    align-self: flex-start;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateX(5px);
}

.approach-section {
    padding: 100px 40px;
    background-color: var(--background-white);
}

.approach-content-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 34px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.approach-visual {
    flex: 0 0 48%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.form-section-asymmetric {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
    background-color: var(--background-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-container-offset h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #c49d2f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.trust-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.trust-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card.offset-down {
    margin-left: 100px;
}

.testimonial-card.offset-up {
    margin-right: 100px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.final-cta-asymmetric {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-content-overlay h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-overlay p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #c49d2f;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-asymmetric {
    background-color: #0f1f2e;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-block h3,
.footer-block h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-block h3 {
    font-size: 22px;
}

.footer-block h4 {
    font-size: 16px;
}

.footer-block p,
.footer-block ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--accent-color);
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.page-hero-asymmetric {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 44px;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro-offset {
    padding: 100px 40px;
    background-color: var(--background-white);
}

.about-split-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.about-image-offset {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.philosophy-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.philosophy-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-item {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.philosophy-item.offset-right {
    margin-left: 100px;
}

.philosophy-item.offset-left {
    margin-right: 100px;
}

.philosophy-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 600;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section-creative {
    padding: 100px 40px;
    background-color: var(--background-white);
}

.team-section-creative h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 40px;
}

.team-visual-offset {
    width: 85%;
    margin-left: 10%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.values-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.values-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.values-offset-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card.offset-down {
    margin-left: 80px;
}

.value-card.offset-up {
    margin-right: 80px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-about-section h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 32px;
    font-weight: 700;
}

.services-detailed {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.service-detail-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    gap: 60px;
}

.service-detail-card.offset-left {
    margin-right: 80px;
}

.service-detail-card.offset-right {
    margin-left: 80px;
}

.service-detail-card.offset-center {
    margin-left: 40px;
    margin-right: 40px;
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 10px;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-section {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.contact-layout-offset {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

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

.contact-note {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.contact-visual-offset {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.availability-section {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.availability-section h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.availability-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 18px;
}

.thanks-section {
    padding: 120px 40px;
    background-color: var(--background-light);
}

.thanks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-detail {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.thanks-visual {
    flex: 0 0 40%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.legal-page {
    padding: 60px 40px 100px;
    background-color: var(--background-white);
}

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

.legal-container h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-visual-offset {
        width: 100%;
        margin-left: 0;
        border-radius: 0;
    }

    .hero-overlay-content {
        position: static;
        margin-top: -60px;
        margin-left: 20px;
        margin-right: 20px;
        max-width: none;
    }

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

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-image-wrapper {
        flex: 0 0 250px;
    }

    .approach-content-split,
    .about-split-content,
    .contact-layout-offset,
    .thanks-container {
        flex-direction: column;
    }

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

    .testimonial-card.offset-down,
    .testimonial-card.offset-up,
    .value-card.offset-down,
    .value-card.offset-up,
    .philosophy-item.offset-left,
    .philosophy-item.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-card {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nav-floating {
        flex-wrap: wrap;
        gap: 16px;
    }

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