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

:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2440;
    --color-secondary: #3d5a80;
    --color-accent: #ee6c4d;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;
    --color-white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--color-primary-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background-color: var(--color-primary-dark);
    padding: 0.5rem 2rem;
    text-align: center;
}

.ad-disclosure {
    color: var(--color-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-brand a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: var(--transition);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

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

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

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

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

.hero-magazine {
    background-color: var(--color-light);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.hero-image-container {
    flex: 1.2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.intro-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
}

.column-wide {
    flex: 2;
}

.column-wide p {
    font-size: 1.1rem;
    color: var(--color-gray);
}

.column-narrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.service-feature {
    flex: 1;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

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

.service-image-wrap {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.trust-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.trust-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-list {
    margin-top: 1.5rem;
}

.trust-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.trust-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trust-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cta-banner {
    background-color: var(--color-primary);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.process-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.page-hero-content h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 0;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-layout {
    display: flex;
    gap: 4rem;
}

.story-main {
    flex: 2;
}

.story-main p {
    font-size: 1.1rem;
    color: var(--color-gray);
}

.story-sidebar {
    flex: 1;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.values-section {
    background-color: var(--color-light);
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-gray);
    margin-bottom: 0;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.team-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-desc {
    color: var(--color-gray);
}

.certifications-section {
    background-color: var(--color-light);
    padding: 5rem 2rem;
}

.cert-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cert-text {
    flex: 1;
}

.cert-list {
    margin-top: 1.5rem;
}

.cert-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.cert-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.cert-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cert-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.services-intro-content p {
    font-size: 1.15rem;
    color: var(--color-gray);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

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

.service-tag {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.service-pricing {
    background-color: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.price-option:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--color-dark);
}

.price-value {
    font-weight: 600;
    color: var(--color-primary);
}

.service-detail-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro p {
    color: var(--color-gray);
}

.service-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    font-size: 1rem;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-icon {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.hours-list span {
    font-weight: 500;
    color: var(--color-dark);
}

.contact-details-section {
    flex: 1.5;
}

.contact-details-content h2 {
    margin-bottom: 1rem;
}

.contact-details-content > p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.transport-info,
.parking-info,
.visit-info {
    margin-bottom: 2rem;
}

.transport-info h3,
.parking-info h3,
.visit-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.transport-info ul {
    color: var(--color-gray);
}

.transport-info li {
    margin-bottom: 0.5rem;
}

.parking-info p,
.visit-info p {
    color: var(--color-gray);
    margin-bottom: 0;
}

.contact-cta {
    background-color: var(--color-secondary);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h2 {
    color: var(--color-white);
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-icon {
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-info p {
    margin-bottom: 0;
}

.thanks-next-steps {
    text-align: left;
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-updated {
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--color-gray);
}

.legal-section ul,
.legal-section ol {
    color: var(--color-gray);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section ul {
    list-style: disc;
}

.email-display {
    color: var(--color-primary);
    font-weight: 500;
}

.site-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact .email-display {
    color: var(--color-white);
}

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

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    max-width: 900px;
    margin: 0 auto 1rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-gray);
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-size: 0.9rem;
}

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

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

.btn-reject {
    background-color: var(--color-gray-light);
    color: var(--color-dark);
}

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

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .intro-columns {
        flex-direction: column;
    }

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

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

    .story-layout {
        flex-direction: column;
    }

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

    .service-detail-content {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-gray-light);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

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

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