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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #2c3e50;
    padding: 25px 0;
}

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

.logo-section {
    flex: 1;
}

.site-logo {
    font-size: 38px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.hero-magazine {
    background-color: #ffffff;
    padding: 0;
}

.hero-content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 30px;
}

.hero-main {
    flex: 2;
    position: relative;
    background-color: #ecf0f1;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: #ffffff;
    padding: 50px 40px;
}

.hero-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background-color: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #95a5a6;
}

.sidebar-card.highlight {
    background-color: #2c3e50;
    color: #ffffff;
    border-left-color: #e74c3c;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.sidebar-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.sidebar-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.sidebar-card.highlight .sidebar-link {
    color: #ffffff;
    border-bottom-color: #e74c3c;
}

.sidebar-link:hover {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

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

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.container-legal {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.two-column-editorial {
    display: flex;
    gap: 60px;
    align-items: center;
}

.column-text {
    flex: 1.2;
}

.column-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.column-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.column-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.insights-grid {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    background-color: #ffffff;
    flex: 0 1 calc(33.333% - 27px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.asymmetric-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-block {
    flex: 1.3;
}

.content-block h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.visual-block {
    flex: 1;
    background-color: #ecf0f1;
}

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

.form-section {
    background-color: #ecf0f1;
    padding: 80px 0;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
}

.submit-btn {
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #34495e;
    padding: 60px 0;
}

.disclaimer-box {
    background-color: #2c3e50;
    padding: 40px;
    border-left: 5px solid #e74c3c;
    color: #ecf0f1;
}

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

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
}

.references-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 15px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.lead-text {
    font-size: 20px;
    color: #bdc3c7;
    font-style: italic;
}

.about-content {
    background-color: #ffffff;
    padding: 80px 0;
}

.content-split {
    display: flex;
    gap: 60px;
}

.text-column {
    flex: 1.5;
}

.text-column h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #2c3e50;
}

.text-column h2:first-child {
    margin-top: 0;
}

.text-column p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.image-column {
    flex: 1;
    background-color: #ecf0f1;
}

.image-column img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

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

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

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #e74c3c;
}

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

.approach-item p {
    font-size: 16px;
    color: #555;
}

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

.timeline-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 120px;
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
    font-family: 'Arial', sans-serif;
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
    border-left: 3px solid #ecf0f1;
}

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

.timeline-content p {
    font-size: 16px;
    color: #555;
}

.cta-section {
    background-color: #ecf0f1;
    padding: 80px 0;
}

.cta-box {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.services-detailed {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-large {
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #34495e;
}

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

.feature-list {
    list-style-position: outside;
    padding-left: 25px;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.select-service-btn {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-prompt {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contact-prompt h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-prompt p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1.2;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

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

.email-display {
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 25px;
    margin-top: 40px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    color: #34495e;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.visual-caption {
    padding: 0 25px 25px;
}

.visual-caption h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.visual-caption p {
    font-size: 15px;
    color: #555;
}

.location-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.location-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.location-info {
    display: flex;
    gap: 60px;
}

.transport-info,
.parking-info {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
}

.location-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.location-info ul {
    list-style-position: outside;
    padding-left: 25px;
}

.location-info ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #555;
}

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

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

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

.faq-item p {
    font-size: 16px;
    color: #555;
}

.service-reminder {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.service-reminder h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-reminder p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-section {
    background-color: #ffffff;
    padding: 100px 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.service-confirmation {
    margin-bottom: 50px;
}

.selected-service-info {
    font-size: 16px;
    color: #2c3e50;
    background-color: #ecf0f1;
    padding: 20px;
    border-left: 4px solid #3498db;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 16px;
    color: #555;
}

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

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.additional-info {
    margin-top: 80px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-cards {
    display: flex;
    gap: 40px;
}

.info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    text-align: left;
}

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

.info-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.info-link {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.info-link:hover {
    color: #2980b9;
}

.legal-page {
    background-color: #ffffff;
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-note {
    margin-top: 40px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: bold;
    color: #2c3e50;
}

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

    .hero-main,
    .hero-sidebar {
        flex: 1;
    }

    .two-column-editorial,
    .asymmetric-layout,
    .content-split,
    .contact-layout,
    .location-info {
        flex-direction: column;
    }

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

    .magazine-grid {
        justify-content: center;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

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

    .main-nav {
        justify-content: center;
    }

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

    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 28px;
    }

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

    .section-heading {
        font-size: 30px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}