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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-visual {
    margin-top: 100px;
    height: 85vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #34495e;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.intro-statement {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    font-weight: 300;
}

.visual-feature {
    padding: 120px 30px;
}

.split-visual {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.visual-left {
    flex: 1;
    background-color: #ecf0f1;
}

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

.visual-right {
    flex: 1;
}

.visual-right h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.visual-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.image-full {
    margin: 100px 0;
}

.full-image-block {
    position: relative;
    height: 500px;
    background-color: #34495e;
}

.full-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.overlay-caption h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    padding: 0 30px;
}

.services-showcase {
    padding: 120px 30px;
    background-color: #fafbfc;
}

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

.service-item {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 350px;
}

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

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

.service-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #3498db;
    margin: 25px 0;
}

.btn-select {
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #34495e;
}

.trust-element {
    padding: 120px 30px;
    background-color: #ffffff;
}

.centered-block {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-block h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

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

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-section {
    padding: 120px 30px;
    background-color: #f1f3f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.main-form {
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe4ea;
    font-size: 15px;
    font-family: inherit;
    color: #2c3e50;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.closing-visual {
    margin: 80px 0;
}

.final-statement {
    font-size: 40px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
}

.site-footer {
    background-color: #1a1a1a;
    color: #b8b8b8;
    padding: 70px 30px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #b8b8b8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

.page-hero {
    margin-top: 100px;
    height: 50vh;
    min-height: 400px;
    position: relative;
}

.services-detail {
    padding: 80px 30px;
}

.detail-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.service-full-block {
    margin-bottom: 100px;
}

.service-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.service-content-split.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-visual-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: #3498db;
    margin: 30px 0 25px;
}

.cta-section {
    padding: 100px 30px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.about-intro {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.about-story {
    padding: 100px 30px;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-section {
    padding: 100px 30px;
    background-color: #fafbfc;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.expertise-section {
    padding: 100px 30px;
}

.expertise-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.expertise-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c3e50;
}

.expertise-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.process-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 200;
    color: #3498db;
    opacity: 0.3;
    min-width: 80px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-information {
    padding: 80px 30px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #2c3e50;
}

.detail-block {
    margin-bottom: 35px;
}

.detail-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.detail-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px;
}

.map-caption p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.info-item {
    flex: 1;
}

.info-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.alternative-contact {
    padding: 80px 30px;
    text-align: center;
}

.alternative-contact h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.alternative-contact p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 120px 30px 80px;
}

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

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.additional-info {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.additional-info h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.info-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.info-links a {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.info-links a:hover {
    background-color: #34495e;
}

.legal-page {
    padding: 120px 30px 80px;
    background-color: #fafbfc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 25px 0 15px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-visual,
    .story-layout,
    .expertise-layout,
    .contact-layout,
    .thanks-container,
    .service-content-split {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column !important;
    }

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

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

    .legal-container {
        padding: 40px 30px;
    }

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