* {
    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: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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;
}

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    border: 1px solid #ffeaa7;
}

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

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

.nav-primary a:hover {
    color: #3498db;
}

.hero-magazine {
    padding: 60px 0;
    background: #f8f9fa;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-intro {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.cta-hero {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.hero-image-block {
    flex: 1;
    min-width: 400px;
}

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

.intro-columns {
    padding: 80px 0;
}

.column-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.column-main {
    flex: 2;
}

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

.column-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.column-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.highlight-box {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #34495e;
}

.highlight-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.services-magazine {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.testimonials-inline {
    padding: 80px 0;
    background: #ecf0f1;
}

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

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

.testimonial {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

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

.info-block {
    padding: 80px 0;
}

.info-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-text p {
    font-size: 18px;
    color: #34495e;
}

.info-visual {
    flex: 1;
}

.info-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.contact-page-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content {
    padding: 80px 0;
}

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

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

.about-section p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.services-detail-list {
    padding: 80px 0;
}

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

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

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

.service-detail-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
}

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

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #34495e;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

.thanks-box {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 30px;
}

.thanks-box a {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-box a:hover {
    background: #2980b9;
}

@media (max-width: 1024px) {
    .hero-grid,
    .column-layout,
    .info-split {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-block {
        min-width: 100%;
    }

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-primary {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .testimonial {
        flex: 0 1 100%;
    }

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