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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #e85d3f;
    --accent-color: #f4a261;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

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

.ad-notice {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-10%);
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #d14d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 63, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-block-offset {
    padding: 100px 8% 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--bg-white);
}

.intro-text-wide {
    flex: 1;
    padding-right: 40px;
}

.intro-text-wide h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-wide p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-image-float {
    flex: 0 0 40%;
    position: relative;
    background-color: var(--border-color);
}

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

.services-preview-irregular {
    padding: 80px 5%;
    background-color: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-offset-top {
    flex: 0 1 calc(45% - 15px);
    margin-top: -40px;
}

.card-offset-left {
    flex: 0 1 calc(48% - 15px);
    margin-left: 5%;
}

.card-image-wrap {
    height: 250px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.price-tag {
    display: block;
    padding: 10px 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    margin: 15px 25px 25px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #0f2436;
    transform: translateX(3px);
}

.trust-band-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5a7a 100%);
    color: var(--bg-white);
    transform: skewY(-2deg);
    margin: 80px 0;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.trust-points-split {
    display: flex;
    gap: 40px;
    justify-content: space-around;
}

.trust-item {
    flex: 1;
}

.trust-item strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-floating-block {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.additional-services-stacked {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.additional-services-stacked h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.service-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item-inline {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-item-inline.reverse {
    flex-direction: row-reverse;
}

.service-item-inline img {
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.service-info {
    flex: 1;
}

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

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

.price-inline {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.disclaimer-section {
    padding: 60px 10%;
    background-color: #fff8f0;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-contact {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.98);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-header-diagonal {
    padding: 100px 8% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5a7a 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-header-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-diagonal p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story-offset {
    padding: 80px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.story-image-left {
    flex: 0 0 45%;
    background-color: var(--border-color);
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.values-asymmetric h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.values-grid-irregular {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 0 1 300px;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card.offset-down {
    margin-top: 40px;
}

.value-card.offset-up {
    margin-top: -40px;
}

.value-card h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-showcase-split {
    padding: 80px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.team-intro-block {
    flex: 1;
}

.team-intro-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-intro-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-visual {
    flex: 0 0 50%;
    background-color: var(--border-color);
}

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

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

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

.philosophy-content-wide h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.philosophy-content-wide p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-detailed-irregular {
    padding: 80px 8%;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.service-detail-block.offset-right {
    margin-left: 5%;
}

.service-detail-block.offset-left {
    margin-right: 5%;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-block {
    margin-bottom: 25px;
}

.price-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-detail {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-services-page {
    padding: 80px 8%;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-services-page h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-services-page p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-layout-asymmetric {
    padding: 80px 8%;
    display: flex;
    gap: 80px;
    background-color: var(--bg-white);
}

.contact-info-block {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-detail-plain {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-visual-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.contact-note h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.directions-section {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.directions-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.directions-content {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.directions-text {
    flex: 1;
}

.directions-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.directions-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.directions-text ul {
    list-style: none;
    padding-left: 0;
}

.directions-text ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-dark);
}

.directions-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.thanks-container {
    padding: 100px 8%;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: var(--bg-white);
}

.thanks-content {
    flex: 1;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
}

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

.thanks-main-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.thanks-visual {
    flex: 0 0 40%;
    background-color: var(--border-color);
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.legal-page {
    padding: 60px 10%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

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

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
    }

    .hero-image-diagonal {
        min-height: 300px;
    }

    .intro-block-offset,
    .about-story-offset,
    .team-showcase-split,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .service-item-inline,
    .service-item-inline.reverse {
        flex-direction: column;
    }

    .service-item-inline img {
        flex: 1;
        width: 100%;
    }

    .trust-points-split {
        flex-direction: column;
    }

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

    .thanks-container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .directions-content {
        flex-direction: column;
    }
}

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

    .card-large,
    .card-offset-top,
    .card-offset-left {
        flex: 1 1 100%;
        margin: 0;
    }

    .service-detail-block.offset-right,
    .service-detail-block.offset-left {
        margin: 0;
    }

    .page-header-diagonal h1 {
        font-size: 2rem;
    }
}