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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #d68910;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d68910;
}

.ad-label {
    background-color: #fef5e7;
    color: #7d6608;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #f9e79f;
}

.hero-magazine {
    background-color: #f8f9fa;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 30px;
}

.hero-main {
    flex: 2;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-fact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #d68910;
}

.quick-fact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #d68910;
}

.quick-fact-card p {
    font-size: 15px;
    line-height: 1.6;
}

.intro-columns {
    padding: 80px 40px;
    background-color: #ffffff;
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.column-left {
    flex: 1.2;
}

.column-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.column-left p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.column-right {
    flex: 1;
}

.column-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #e9ecef;
}

.stat-box {
    background-color: #d68910;
    color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    margin-top: 5px;
}

.philosophy-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
}

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

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.philosophy-text p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
}

.link-inline {
    display: inline-block;
    color: #d68910;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #d68910;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.link-inline:hover {
    color: #b8760d;
    border-bottom-color: #b8760d;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.philosophy-extra {
    flex: 1 1 100%;
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #d68910;
    border-radius: 4px;
}

.philosophy-extra blockquote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.philosophy-extra cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.services-preview {
    padding: 80px 40px;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-mag {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card-mag:hover {
    transform: translateY(-5px);
}

.service-card-mag img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card-content p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #d68910;
    margin-bottom: 15px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 20px;
    background-color: #d68910;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #b8760d;
}

.process-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.process-columns {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: #d68910;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 70px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d68910;
}

.testimonial-item p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-item cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 16px;
    color: #7f8c8d;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 15px 20px;
    background-color: #d68910;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef5e7;
    border-top: 1px solid #f9e79f;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #7d6608;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d68910;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

.footer-column ul li a:hover {
    color: #d68910;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
    }

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

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

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

.page-hero {
    background: linear-gradient(135deg, #d68910 0%, #b8760d 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-mission {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #d68910;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d68910;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
}

.about-approach {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-cta,
.contact-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #d68910;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #b8760d;
}

.services-full {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-full-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-full-image {
    flex: 1;
}

.service-full-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-full-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #d68910;
}

.price-old {
    font-size: 24px;
    color: #95a5a6;
    text-decoration: line-through;
}

.contact-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d68910;
}

.contact-detail p {
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #7f8c8d;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon:before {
    content: "✓";
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-service-info p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.thanks-service-info strong {
    color: #d68910;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

@media (max-width: 1024px) {
    .service-full-item,
    .service-full-item.reverse {
        flex-direction: column;
    }

    .approach-layout {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .main-nav {
        gap: 20px;
    }

    .testimonial-item {
        flex: 1 1 100%;
    }

    .container-form {
        padding: 30px 20px;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .thanks-content {
        padding: 40px 25px;
    }
}