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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.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-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

.header-top {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 11px;
    color: #666;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    padding: 15px 0;
}

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

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

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

.hero-editorial {
    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;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    color: #ffffff;
    max-width: 700px;
}

.hero-overlay h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.content-grid {
    display: flex;
    gap: 50px;
    padding: 0 40px;
    margin-bottom: 80px;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
    max-width: 380px;
}

.featured-content {
    margin-bottom: 50px;
}

.featured-content h3 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.featured-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    object-fit: cover;
    border-radius: 4px;
}

.secondary-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.secondary-content p {
    font-size: 17px;
    margin-bottom: 18px;
}

.insight-box {
    background-color: #ecf0f1;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.insight-box p {
    margin: 0;
    font-style: italic;
    color: #2c3e50;
}

.info-card {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.benefits-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.cta-card {
    background-color: #3498db;
    color: #ffffff;
    padding: 30px;
    border-radius: 4px;
}

.cta-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin-bottom: 80px;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h3 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h4 {
    font-size: 20px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #5a6c7d;
    flex-grow: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 16px;
}

.btn-service {
    margin: 0 20px 20px;
    padding: 12px 0;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.subscription-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.subscription-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    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: #3498db;
}

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

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

.testimonials-inline {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #5a6c7d;
    font-style: normal;
    font-weight: 600;
}

.trust-section {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.trust-section img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.footer-col a:hover {
    color: #3498db;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

.services-page,
.about-page,
.contact-page,
.thanks-page,
.legal-page {
    padding: 40px 20px;
}

.page-hero-small {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px 20px;
}

.page-hero-small h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero-small p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.services-form-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin-top: 60px;
}

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

.form-container-centered h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-container-centered > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px 20px;
}

.about-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.about-content-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.methodology-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.methodology-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.method-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
}

.method-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.method-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.values-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
    margin-bottom: 80px;
}

.values-section {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.values-content {
    flex: 1.5;
}

.values-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.team-expertise {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.team-expertise h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-col {
    flex: 1;
    min-width: 260px;
}

.expertise-col h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.expertise-col p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.commitment-section {
    background-color: #3498db;
    padding: 80px 40px;
    margin-bottom: 0;
}

.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.commitment-box h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #ffffff;
}

.commitment-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.commitment-box .btn-primary {
    background-color: #ffffff;
    color: #3498db;
    margin-top: 12px;
}

.commitment-box .btn-primary:hover {
    background-color: #ecf0f1;
}

.contact-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px 20px;
}

.contact-hero h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.contact-info-main {
    flex: 1.5;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #5a6c7d;
    font-style: italic;
    margin-top: 8px;
}

.contact-additional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-additional h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.info-boxes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
}

.info-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

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

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

.thanks-message h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-intro {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-selected {
    font-weight: 600;
    color: #3498db;
    font-size: 17px;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.additional-info {
    margin-top: 40px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.additional-info p {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.legal-content h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

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

.cookies-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .content-grid {
        flex-direction: column;
    }

    .sidebar-column {
        max-width: 100%;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }

    .hero-overlay h2 {
        font-size: 32px;
    }

    .services-magazine-grid {
        flex-direction: column;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

    .trust-section {
        flex-direction: column;
    }

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

    .about-content-split {
        flex-direction: column;
    }

    .values-section {
        flex-direction: column;
    }

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

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

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}