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

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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-magazine {
    background-color: #fff;
    border-bottom: 3px solid #2c3e50;
    position: sticky;
    top: 28px;
    z-index: 999;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

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

.main-nav a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

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

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

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 80px 40px 60px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 56px;
    max-width: 900px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-style: italic;
}

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

.intro-editorial {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
}

.intro-editorial h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 400;
}

.intro-editorial p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.fact-box {
    background-color: #ecf0f1;
    padding: 30px;
    border-left: 5px solid #e74c3c;
}

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

.fact-box p {
    font-size: 16px;
    line-height: 1.6;
}

.visual-break {
    margin: 80px 0;
    background-color: #34495e;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.content-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.grid-col-left {
    flex: 1.5;
}

.grid-col-right {
    flex: 1;
}

.content-grid h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
}

.content-grid p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

.technical-detail {
    background-color: #f8f9fa;
    padding: 25px;
    margin-top: 25px;
}

.technical-detail h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.technical-detail ul {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.8;
}

.grid-col-right img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: #34495e;
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
}

.service-showcase {
    margin: 100px 0;
    padding: 60px 0;
    background-color: #fff;
}

.service-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #7f8c8d;
    margin-bottom: 60px;
    font-style: italic;
}

.service-cards-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    background-color: #f8f9fa;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: #34495e;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #2c3e50;
    color: #fff;
    padding: 12px 28px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.btn-service:hover {
    background-color: #e74c3c;
}

.quote-section {
    margin: 80px auto;
    max-width: 900px;
    padding: 60px 40px;
    background-color: #ecf0f1;
    border-left: 8px solid #2c3e50;
}

.quote-section blockquote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 20px;
}

.quote-section cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.deep-dive {
    margin: 80px 0;
    padding: 60px;
    background-color: #fff;
}

.deep-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
}

.deep-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.insight-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin-top: 30px;
}

.insight-box p {
    font-size: 17px;
    margin: 0;
}

.cta-form-section {
    margin: 100px 0;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #fff;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #ecf0f1;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: #e74c3c;
    color: #fff;
    padding: 16px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

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

.footer-magazine {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

.footer-bottom p {
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 25px;
    z-index: 9999;
    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: 15px;
    font-family: Arial, sans-serif;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: #fff;
}

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

.page-hero {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

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

.page-hero p {
    font-size: 20px;
    font-style: italic;
}

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

.stats-box {
    background-color: #2c3e50;
    padding: 30px;
    color: #fff;
}

.stat-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.approach-section {
    margin: 80px 0;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
}

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

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
}

.team-philosophy {
    margin: 80px 0;
    padding: 60px;
    background-color: #ecf0f1;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

.philosophy-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-left: 5px solid #e74c3c;
    background-color: #fff;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
}

.cta-secondary {
    text-align: center;
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #fff;
    margin: 80px 0;
}

.cta-secondary h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-secondary p {
    font-size: 18px;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.btn-cta:hover {
    background-color: #c0392b;
}

.services-detailed {
    margin: 60px 0;
}

.service-block {
    margin-bottom: 60px;
    background-color: #fff;
    padding: 40px;
    border-left: 5px solid #2c3e50;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 400;
}

.price-tag {
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-process {
    margin: 80px 0;
    padding: 60px;
    background-color: #ecf0f1;
}

.service-process h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #7f8c8d;
}

.contact-info-section {
    margin: 60px 0;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
}

.contact-main > p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.contact-note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
}

.location-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.location-section p {
    font-size: 17px;
    line-height: 1.6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border: 3px solid #27ae60;
}

.success-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 400;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    margin-bottom: 25px;
    font-size: 16px;
}

.response-time {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.btn-primary {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-secondary {
    background-color: #7f8c8d;
    color: #fff;
}

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

.legal-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 400;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 20px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 400;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #34495e;
    font-weight: 400;
}

.legal-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: 20px;
}

.cookie-row {
    font-size: 15px;
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

@media (max-width: 1024px) {
    .intro-editorial,
    .content-grid,
    .about-intro {
        flex-direction: column;
    }

    .service-cards-magazine {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
    }

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

    .approach-grid,
    .values-list {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .contact-details {
        flex-direction: column;
    }
}