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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #7f8c8d;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --border-color: #bdc3c7;
    --link-color: #3498db;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-reject:hover {
    background-color: #5d6d7e;
}

.header-main {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-main {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: var(--text-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--link-color);
}

.ad-label {
    background-color: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.ad-label span {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-magazine {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
}

.hero-text-block {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

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

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

.intro-magazine {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-grid {
    display: flex;
    gap: 3rem;
}

.intro-main-column {
    flex: 2;
}

.intro-side-column {
    flex: 1;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.content-visual {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.visual-columns {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.visual-text {
    flex: 1;
}

.visual-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.content-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-heading-center {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 0 0 calc(50% - 1rem);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.form-heading {
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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: var(--link-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.info-columns {
    padding: 4rem 0;
    background-color: var(--white);
}

.columns-three {
    display: flex;
    gap: 3rem;
}

.column {
    flex: 1;
}

.column h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0;
}

.footer-main {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

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

.disclaimer {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.7);
}

.page-hero {
    padding: 4rem 0 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0;
}

.about-content {
    padding: 4rem 0;
}

.about-layout {
    display: flex;
    gap: 3rem;
}

.about-main {
    flex: 2;
}

.about-sidebar {
    flex: 1;
}

.about-image-inline {
    margin: 2rem 0;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.about-image-inline img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sidebar-box {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.sidebar-box h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.facts-list,
.focus-list {
    list-style: none;
    padding: 0;
}

.facts-list li,
.focus-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.facts-list li:before,
.focus-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-top: 0;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.services-cta {
    padding: 4rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.services-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-info {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.email-text {
    font-weight: 600;
    color: var(--text-color);
}

.small-note {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.contact-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.thanks-hero {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.thanks-content {
    text-align: center;
}

.thanks-title {
    font-size: 2.8rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

.thanks-next-steps h3 {
    color: var(--primary-color);
}

.steps-list {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.additional-info {
    padding: 4rem 0;
}

.additional-info h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-grid {
    display: flex;
    gap: 2rem;
}

.info-item {
    flex: 1;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-item h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.info-item a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
}

.legal-content h4 {
    color: var(--secondary-color);
}

.legal-content a {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .intro-grid,
    .visual-columns,
    .columns-three,
    .footer-columns,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-list {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-heading-center,
    .page-title {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .info-grid {
        flex-direction: column;
    }

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