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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7a8f;
    --accent-color: #5fa8d3;
    --bg-light: #f5f7fa;
    --text-dark: #2c3e50;
    --text-medium: #546e7a;
    --border-color: #e0e6ed;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: flex;
}

.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;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

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

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

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

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

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 122, 0.95), transparent);
    color: var(--white);
    padding: 60px 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    opacity: 0.95;
}

.intro-multi-column {
    display: flex;
    gap: 40px;
    padding: 80px 40px;
    background-color: var(--white);
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.column-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.column-sidebar {
    flex: 1;
}

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-preview {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card-large {
    display: flex;
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-large .service-image-wrapper {
    flex: 1.2;
    background-color: var(--bg-light);
}

.service-card-large .service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-large .service-content {
    flex: 1;
    padding: 40px;
}

.service-card-large h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card-large p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.service-card-medium {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-medium .service-image-wrapper {
    height: 250px;
    background-color: var(--bg-light);
}

.service-card-medium .service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-medium .service-content {
    padding: 30px;
}

.service-card-medium h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card-medium p {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.select-service-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: var(--primary-color);
}

.insight-section {
    padding: 80px 40px;
    background-color: var(--white);
}

.insight-layout {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.insight-text {
    flex: 1.3;
}

.insight-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-medium);
}

.insight-image {
    flex: 1;
    background-color: var(--bg-light);
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.more-services {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.service-compact {
    flex: 1;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.compact-image {
    height: 220px;
    background-color: var(--bg-light);
}

.compact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-compact h3 {
    font-size: 22px;
    padding: 24px 24px 12px 24px;
    color: var(--primary-color);
}

.service-compact p {
    padding: 0 24px 16px 24px;
    font-size: 15px;
    color: var(--text-medium);
}

.service-compact .price-tag {
    padding: 0 24px 16px 24px;
}

.service-compact .select-service-btn {
    margin: 0 24px 24px 24px;
}

.cta-form-section {
    padding: 80px 40px;
    background-color: var(--white);
}

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

.form-container-magazine h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

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

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

.trust-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-medium);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.about-page,
.services-page,
.contact-page,
.thanks-page,
.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.about-hero,
.page-header {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.about-hero .hero-image-container {
    max-width: 100%;
    height: 400px;
    margin-bottom: 30px;
    background-color: var(--bg-light);
}

.hero-text-overlay h1,
.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 18px;
    color: var(--text-medium);
}

.about-intro {
    padding: 60px 40px;
}

.intro-layout {
    display: flex;
    gap: 50px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-main p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.intro-aside {
    flex: 1;
}

.stats-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-top: 4px solid var(--secondary-color);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
}

.values-section,
.approach-section,
.team-philosophy,
.commitment-section {
    padding: 60px 40px;
}

.values-section h2,
.team-philosophy h2,
.commitment-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-medium);
}

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.approach-image {
    flex: 1;
    background-color: var(--bg-light);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.philosophy-text {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 16px;
    color: var(--text-medium);
    text-align: center;
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-light);
    border-top: 4px solid var(--secondary-color);
}

.commitment-box h2 {
    margin-bottom: 20px;
    text-align: left;
}

.commitment-box p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.services-detailed {
    padding: 40px 0;
}

.service-detail {
    margin-bottom: 60px;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-title {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-light);
}

.service-detail-title h2 {
    font-size: 30px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-medium);
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.process-overview {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.process-overview h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    padding: 30px;
    background-color: var(--white);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
}

.cta-section {
    padding: 60px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

.contact-header {
    text-align: center;
    padding: 60px 20px;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-content {
    display: flex;
    gap: 50px;
    padding: 40px 0;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-medium);
}

.contact-map-placeholder {
    flex: 1;
}

.map-replacement {
    background-color: var(--bg-light);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-replacement h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.map-replacement p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.additional-info {
    padding: 60px 0;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.help-options {
    display: flex;
    gap: 30px;
}

.help-option {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
}

.help-option h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.help-option p {
    font-size: 15px;
    color: var(--text-medium);
}

.response-time-info {
    padding: 40px 0;
}

.response-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-light);
    border-top: 4px solid var(--secondary-color);
}

.response-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.response-box p {
    font-size: 16px;
    color: var(--text-medium);
}

.thanks-content {
    text-align: center;
    padding: 80px 40px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto 40px;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 24px;
    margin-top: 30px;
    border-radius: 4px;
}

.selected-service-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selected-service-info p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-medium);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

.contact-reminder {
    max-width: 600px;
    margin: 0 auto;
}

.contact-reminder p {
    font-size: 15px;
    color: var(--text-medium);
}

.email-display {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.legal-page {
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--primary-color);
}

.legal-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 16px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-section ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .intro-multi-column,
    .insight-layout,
    .services-row,
    .trust-grid,
    .footer-content,
    .intro-layout,
    .approach-layout,
    .contact-content,
    .help-options,
    .process-steps {
        flex-direction: column;
    }

    .service-card-large {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}