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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
}

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

.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;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-magazine {
    background: #ffffff;
    border-bottom: 3px solid #1a1a1a;
}

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

.logo-area {
    flex: 1;
}

.site-logo {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

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

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

.hero-content-mag {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: #ffffff;
}

.hero-content-mag h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content-mag p {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.6;
}

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

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

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

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

.col-layout-three {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-col {
    flex: 1;
    min-width: 280px;
}

.intro-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.intro-col p {
    font-size: 16px;
    color: #4a4a4a;
}

.services-preview {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-header-left {
    margin-bottom: 50px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
}

.services-grid-mag {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-mag {
    display: flex;
    gap: 40px;
    background: #ffffff;
    overflow: hidden;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 400px;
    background-color: #e5e5e5;
}

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

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 10px;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.cta-link:hover {
    background: #1d4ed8;
}

.value-proposition {
    padding: 80px 0;
    background: #ffffff;
}

.value-proposition h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.value-proposition p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.split-content {
    flex: 1;
    min-width: 400px;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
    margin: 30px 0;
}

.approach-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #3a3a3a;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.split-visual {
    flex: 1;
    min-width: 400px;
    background-color: #e5e5e5;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.contact-form-mag {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

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

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

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

.btn-submit:hover {
    background: #1d4ed8;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff3cd;
}

.disclaimer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

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

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

    .hero-content-mag h2 {
        font-size: 36px;
    }

    .hero-content-mag p {
        font-size: 16px;
    }

    .col-layout-three {
        flex-direction: column;
    }

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

    .service-image {
        min-width: 100%;
        height: 300px;
    }

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

    .contact-form-mag {
        padding: 30px 20px;
    }

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: #f9f9f9;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content .selected-service {
    font-weight: 600;
    color: #2563eb;
}

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #1d4ed8;
}

.about-header {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.team-section {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #d1d1d1;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 15px;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-header {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-card {
    background: #ffffff;
    padding: 50px;
    margin-bottom: 40px;
    border-left: 4px solid #2563eb;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-card .service-price {
    font-size: 24px;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.service-detail-card ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-card ul li {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.contact-page-header {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.contact-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-page-header p {
    font-size: 20px;
}

.contact-info-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

.contact-info-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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