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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 1000;
    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;
}

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

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

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-cookie-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 28px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.header-top {
    background-color: #34495e;
    padding: 8px 0;
}

.ad-label {
    color: #ecf0f1;
    font-size: 13px;
    font-weight: 500;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 2px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand-logo a {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #34495e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-magazine {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.85));
    display: flex;
    align-items: center;
}

.hero-content-split {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.hero-main {
    flex: 2;
}

.hero-main h1 {
    font-size: 48px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    line-height: 1.6;
}

.hero-sidebar {
    flex: 1;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 6px;
}

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

.info-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.intro-section {
    padding: 50px 0 60px;
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
    font-weight: 300;
}

.featured-services {
    padding: 70px 0;
}

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

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
}

.section-title {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 50px;
    line-height: 1.7;
}

.service-block {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.service-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price-tag {
    font-size: 32px;
    color: #3498db;
    font-weight: 700;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.sidebar-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.sidebar-card p {
    font-size: 15px;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sidebar-price {
    font-size: 24px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-sidebar {
    width: 100%;
    padding: 12px;
}

.approach-section {
    padding: 70px 0;
    background-color: #ecf0f1;
}

.centered-title {
    font-size: 34px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.cta-form-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-wrapper > p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.form-row {
    display: flex;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.trust-indicators {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.email-text {
    color: #bdc3c7;
    font-style: normal;
}

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

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.6;
}

.copyright {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero-simple {
    padding: 80px 0 60px;
    background-color: #ecf0f1;
}

.page-hero-simple h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    color: #34495e;
    line-height: 1.7;
}

.content-section {
    padding: 70px 0;
}

.content-image-block {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.content-image-block.reverse {
    flex-direction: row-reverse;
}

.content-image-block img {
    flex: 1;
    width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-text-full {
    margin-bottom: 60px;
}

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

.content-text-full p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 18px;
}

.philosophy-list {
    list-style: none;
    margin-top: 20px;
}

.philosophy-list li {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.philosophy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 30px;
}

.team-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

.team-info p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.values-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.value-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

.cta-section-simple {
    padding: 70px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section-simple p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

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

.btn-outline {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 14px 38px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.services-detailed {
    padding: 70px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    gap: 0;
    background-color: #f8f9fa;
}

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

.service-detail-title h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.price-large {
    font-size: 38px;
    color: #3498db;
    font-weight: 700;
}

.price-period {
    font-size: 20px;
    color: #7f8c8d;
}

.service-detail-header img {
    flex: 1;
    width: 50%;
    height: 300px;
    object-fit: cover;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content > p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

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

.service-detail-content li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-content {
    padding: 70px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

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

.contact-text-column {
    flex: 1.5;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 30px;
}

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

.info-block p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.info-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
    font-style: italic;
}

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

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

.contact-text-column h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 35px;
    font-weight: 600;
}

.contact-text-column p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 18px;
}

.process-list {
    padding-left: 20px;
    margin-bottom: 30px;
}

.process-list li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-list {
    padding-left: 25px;
    margin-bottom: 30px;
}

.info-list li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 30px 0;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.location-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-info {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.location-info p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
}

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

.thanks-lead {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background-color: #e8f4f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-info p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.7;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

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

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-additional {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-additional h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.thanks-additional p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.link-card {
    background-color: #f8f9fa;
    color: #2c3e50;
    padding: 20px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: 2px solid #e0e0e0;
}

.link-card:hover {
    background-color: #3498db;
    color: #ffffff;
    border-color: #3498db;
}

.thanks-note {
    background-color: #fff9e6;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 0;
}

.thanks-cta {
    margin-top: 50px;
}

.legal-content {
    padding: 70px 0;
}

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

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

.cookies-table th,
.cookies-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

.cookies-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #34495e;
}

@media (max-width: 1024px) {
    .magazine-grid {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

    .service-detail-header img {
        width: 100%;
    }

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

    .team-grid {
        flex-direction: column;
    }
}

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

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

    .nav-menu {
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .content-image-block {
        flex-direction: column;
    }

    .content-image-block.reverse {
        flex-direction: column;
    }

    .content-image-block img {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-actions {
        width: 100%;
        margin-top: 15px;
    }

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