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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e8eaed;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-magazine {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

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

.hero-text-column {
    flex: 1;
    color: #ffffff;
}

.hero-text-column h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-image-column {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #357abd;
}

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

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

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

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

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

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a2332;
}

.intro-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-sidebar {
    flex: 1;
}

.highlight-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

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

.highlight-box ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
    font-size: 16px;
}

.highlight-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

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

.section-title-centered {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a2332;
}

.services-multi-column {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 15px 25px;
    color: #1a2332;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 20px 25px;
    color: #4a5568;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin: 0 25px 20px 25px;
}

.select-service-btn {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    margin: 0 25px 25px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-us-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.why-grid-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-image {
    flex: 1;
    background-color: #e9ecef;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a2332;
}

.why-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.contact-form-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a2332;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #1a2332;
    color: #e8eaed;
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px 0 30px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a90e2;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #667eea;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #5568d3;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px 0;
    color: #ffffff;
}

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

.header-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.about-main-text {
    flex: 2;
}

.about-main-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a2332;
}

.about-main-text h2:first-of-type {
    margin-top: 0;
}

.about-main-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-main-text img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 35px 0;
    background-color: #e9ecef;
}

.values-list {
    list-style: none;
    margin: 25px 0;
}

.values-list li {
    padding: 12px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.values-list li strong {
    color: #1a2332;
}

.about-sidebar {
    flex: 1;
}

.info-box,
.cta-box {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box h3,
.cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a2332;
}

.fact-item {
    text-align: center;
    margin-bottom: 25px;
}

.fact-number {
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.fact-label {
    font-size: 15px;
    color: #4a5568;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a5568;
}

.cta-box-link {
    display: inline-block;
    background-color: #667eea;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-box-link:hover {
    background-color: #5568d3;
}

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

.service-detail-card {
    margin-bottom: 70px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-layout.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-price-large {
    font-size: 38px;
    font-weight: 800;
    color: #667eea;
    margin: 30px 0 25px 0;
}

.services-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2332;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1a2332;
}

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

.contact-detail h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a2332;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-height: 400px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 35px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-confirmation p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-legal h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a2332;
}

.container-legal h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a2332;
}

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

.container-legal p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.container-legal ul {
    margin: 20px 0;
    padding-left: 25px;
}

.container-legal ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
}

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

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #1a2332;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .intro-grid,
    .why-grid-reverse,
    .services-multi-column,
    .about-layout,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .section-title-centered {
        font-size: 34px;
    }
}