* {
    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.7;
    color: #2c3e50;
    background: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 250px;
    margin: 0;
}

.cookie-content a {
    color: #a8d5e5;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4a90a4;
    color: #fff;
}

.btn-accept:hover {
    background: #3d7a8c;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    background: #f8f8f8;
}

.hero-editorial {
    margin-bottom: 40px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #d4e4e9;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
}

.editorial-flow {
    background: #fff;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-large {
    font-size: 22px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 300;
}

.narrow-content p {
    margin-bottom: 24px;
    font-size: 17px;
}

.narrow-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #e8f1f3;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    padding: 15px;
    margin: 0;
}

.testimony-inline {
    border-left: 4px solid #4a90a4;
    padding-left: 30px;
    margin: 40px 0;
    font-size: 18px;
    font-style: italic;
    color: #34495e;
}

.testimony-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-style: normal;
    color: #7f8c8d;
}

.reference {
    color: #4a90a4;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.reference:hover {
    text-decoration: underline;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a90a4;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #3d7a8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,144,164,0.3);
}

.service-cards-inline {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #4a90a4;
}

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

.service-card p {
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90a4;
    margin: 20px 0;
}

.btn-select {
    padding: 12px 30px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-select:hover {
    background: #1a252f;
}

.form-wrapper {
    background: #f0f8fa;
    padding: 40px;
    border-radius: 6px;
    margin: 40px 0;
}

.form-wrapper h2 {
    margin-top: 0;
}

.selected-info {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

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

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px;
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.references-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 4px;
}

.references-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.references-list {
    margin-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list a {
    color: #4a90a4;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

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

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

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

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

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

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.contact-page {
    background: #fff;
    padding: 60px 20px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-block {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 6px;
}

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

.contact-block p {
    margin-bottom: 10px;
    font-size: 16px;
}

.services-page {
    background: #fff;
    padding: 60px 20px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.service-item {
    padding: 35px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fafafa;
}

.service-item h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90a4;
    margin: 20px 0;
}

.legal-page {
    background: #fff;
    padding: 60px 20px;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 20px 0 20px 40px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-page {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thanks-content .btn-primary {
    margin-top: 30px;
}

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

    .hero-image-wrapper {
        height: 350px;
    }

    .narrow-content {
        padding: 40px 15px;
    }

    .intro-large {
        font-size: 19px;
    }

    .narrow-content h2 {
        font-size: 26px;
    }

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

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}