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

:root {
    --primary-color: #2D3047;
    --secondary-color: #419D78;
    --accent-color: #E0A458;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
    max-width: 90%;
    width: 900px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 40px;
}

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

.nav-links a {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 60px 80px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    z-index: 10;
    position: relative;
}

.hero-title-large {
    font-size: 64px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

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

.hero-image-offset {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 55%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transform: rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(65, 157, 120, 0.3);
}

.cta-primary:hover {
    background-color: #358764;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 157, 120, 0.4);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-staggered {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    background-color: var(--bg-light);
}

.intro-block-left {
    flex: 1;
    padding-left: 100px;
}

.intro-block-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image-right {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transform: translateX(40px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--border-color);
}

.services-asymmetric {
    padding: 120px 60px;
    background-color: var(--bg-white);
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 70px;
    margin-left: 80px;
}

.section-header-offset h2 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.service-card-tall .service-image {
    height: 350px;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    object-fit: cover;
}

.service-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-select-btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
}

.service-select-btn:hover {
    background-color: #c88f45;
    transform: scale(1.02);
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f2236 100%);
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    padding-left: 80px;
}

.form-container-offset h2 {
    font-size: 48px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 800;
}

.form-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    color: var(--bg-white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.cta-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    margin-top: 10px;
}

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

.form-visual {
    flex: 1;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-3deg);
    background-color: var(--border-color);
}

.trust-block {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.trust-item h3 {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    min-width: 300px;
}

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

.cookie-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
}

.cookie-accept:hover {
    background-color: #358764;
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--border-color);
}

.cookie-reject:hover {
    background-color: var(--bg-light);
}

.cookie-actions a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

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

.page-header-offset {
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: left;
    padding-left: 120px;
}

.page-header-offset h1 {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header-offset p {
    font-size: 22px;
    color: var(--text-light);
}

.about-story {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-block-left {
    flex: 1;
    padding-right: 40px;
}

.story-block-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

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

.story-image-right {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--border-color);
}

.team-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.philosophy-item h3 {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.values-asymmetric {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.values-content {
    flex: 1;
    padding-right: 40px;
}

.values-content h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

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

.values-list li {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 22px;
}

.values-visual {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--border-color);
}

.cta-about {
    padding: 100px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-about p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.services-detailed {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

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

.service-detail-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--border-color);
}

.service-detail-content {
    flex: 1;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

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

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.service-includes li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-detail-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.contact-info-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}

.small-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.contact-map-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-map-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-map-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-color: var(--bg-light);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.contact-cta {
    padding: 100px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-size: 18px;
}

.thanks-note {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page {
    padding: 140px 60px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.last-updated {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 40px 60px;
    }

    .hero-image-offset {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .intro-staggered,
    .about-story,
    .values-asymmetric,
    .service-detail-item {
        flex-direction: column;
    }

    .intro-image-right,
    .story-image-right,
    .values-visual,
    .service-detail-image {
        transform: none;
        width: 100%;
    }

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

    .form-visual {
        transform: none;
        width: 100%;
    }

    .nav-floating {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-brand {
        margin-right: 0;
    }

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

    .service-card,
    .service-card-wide {
        flex: 1 1 100%;
    }
}

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

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

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

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

    .page-header-offset {
        padding: 140px 30px 60px;
    }

    .page-header-offset h1 {
        font-size: 42px;
    }

    .intro-block-left {
        padding-left: 0;
    }

    .form-container-offset {
        padding-left: 0;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .trust-grid,
    .philosophy-grid,
    .contact-info-grid {
        flex-direction: column;
    }
}
