* {
    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.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-magazine {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.hero-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.hero-main {
    flex: 1.5;
}

.hero-main h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.hero-aside {
    flex: 1;
    background: #f5f5f5;
}

.hero-image {
    width: 100%;
    height: auto;
}

.intro-grid {
    background: #fafafa;
    padding: 80px 40px;
}

.grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.intro-col-wide {
    flex: 2;
}

.intro-col-narrow {
    flex: 1;
}

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

.intro-col p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.stat-block {
    background: #ffffff;
    padding: 35px;
    border-left: 4px solid #0066cc;
}

.stat-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.stat-list {
    list-style: none;
}

.stat-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.stat-list li:last-child {
    border-bottom: none;
}

.featured-work {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.featured-header h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
}

.featured-columns {
    display: flex;
    gap: 40px;
}

.featured-item {
    flex: 1;
}

.featured-img {
    width: 100%;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.featured-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.featured-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.services-intro {
    flex: 1;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.link-arrow {
    color: #0066cc;
    font-size: 16px;
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-block;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-cards {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    overflow: hidden;
    display: flex;
    gap: 25px;
    align-items: center;
}

.service-img {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    background: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #0066cc;
}

.cta-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.cta-visual {
    flex: 1;
    background: #f0f0f0;
}

.cta-img {
    width: 100%;
    height: auto;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

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

.btn-submit:hover {
    background: #0052a3;
}

.footer-main {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #252525;
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 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;
    gap: 30px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #0052a3;
}

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

.btn-cookie.reject:hover {
    background: #555;
}

.cookie-link {
    color: #66b3ff;
    font-size: 14px;
    text-decoration: underline;
}

.thanks-message {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.service-listing {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-listing h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 60px;
    max-width: 900px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: #fafafa;
    padding: 30px;
    align-items: flex-start;
}

.service-item-img {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    background: #e0e0e0;
}

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

.service-item h2 {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-item .price {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
    display: block;
}

.about-content {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-header {
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
}

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

.about-main {
    flex: 2;
}

.about-main h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-main p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-sidebar {
    flex: 1;
    background: #f9f9f9;
    padding: 35px;
}

.about-sidebar h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar ul li {
    padding: 12px 0;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.contact-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.contact-block {
    background: #f9f9f9;
    padding: 30px;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-columns,
    .grid-wrapper,
    .featured-columns,
    .services-layout,
    .cta-split,
    .footer-columns,
    .about-layout,
    .service-item {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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