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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #1a3a52;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 33px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a52;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c7873;
}

.hero-asymmetric {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a52 0%, #2c7873 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
    margin-right: auto;
    padding: 60px 40px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 21px;
    color: #e8f1f0;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: #d4a259;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 162, 89, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 48%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: -15px 20px 40px rgba(0,0,0,0.25);
    object-fit: cover;
}

.intro-irregular {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 90px auto 60px;
    padding: 0 40px;
}

.intro-block-left {
    flex: 1.2;
    padding: 40px;
    background-color: #ffffff;
    border-left: 6px solid #2c7873;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.intro-block-left h2 {
    font-size: 34px;
    color: #1a3a52;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 17px;
    color: #555555;
}

.intro-block-right {
    flex: 1;
    padding: 50px 30px;
    align-self: flex-end;
}

.intro-block-right p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.cta-inline {
    color: #2c7873;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c7873;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: #1a3a52;
}

.services-staggered {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 42px;
    color: #1a3a52;
    margin-bottom: 60px;
    margin-left: 12%;
    font-weight: 800;
}

.service-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-odd {
    margin-left: 0;
    margin-right: 8%;
}

.service-even {
    margin-left: 8%;
    margin-right: 0;
}

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

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

.service-content {
    flex: 1.3;
    padding: 45px;
}

.service-content h3 {
    font-size: 28px;
    color: #1a3a52;
    margin-bottom: 18px;
}

.service-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #d4a259;
    margin: 25px 0;
}

.btn-select-service {
    padding: 14px 35px;
    background-color: #2c7873;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #1a3a52;
    transform: scale(1.03);
}

.trust-overlap {
    position: relative;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.trust-image-bg {
    flex: 1;
    position: relative;
    background-color: #e8f1f0;
    border-radius: 8px;
    overflow: hidden;
}

.trust-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-content-box {
    flex: 1.2;
    background-color: #ffffff;
    padding: 55px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    border-radius: 8px;
    margin-top: -60px;
}

.trust-content-box h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 25px;
}

.trust-content-box p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 30px;
}

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

.benefits-list li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7873;
    font-weight: 700;
    font-size: 20px;
}

.form-section-offset {
    max-width: 800px;
    margin: 90px auto 90px 15%;
    padding: 0 40px;
}

.form-container {
    background-color: #ffffff;
    padding: 55px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #666666;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #d4a259;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c28f44;
    transform: translateY(-2px);
}

.disclaimer-block {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 40px;
}

.disclaimer-text {
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 4px solid #d4a259;
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    color: #e8f1f0;
}

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

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

.footer-col a {
    color: #e8f1f0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
    color: #b0c4de;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-accept {
    background-color: #2c7873;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a3a52;
    transform: translateY(-1px);
}

.btn-reject {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

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

.cookie-link {
    color: #2c7873;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header-diagonal {
    background: linear-gradient(125deg, #1a3a52 0%, #2c7873 100%);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-diagonal::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10%;
    right: -10%;
    height: 30px;
    background-color: #fafafa;
    transform: rotate(-2deg);
}

.page-header-diagonal h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
}

.header-subtitle {
    font-size: 20px;
    color: #e8f1f0;
}

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

.story-image-left {
    flex: 1;
    background-color: #e8f1f0;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content-right {
    flex: 1.2;
}

.story-content-right h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 25px;
}

.story-content-right p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 40px;
}

.centered-title {
    font-size: 40px;
    color: #1a3a52;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.value-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.value-1 {
    margin-left: 0;
    margin-right: 15%;
}

.value-2 {
    margin-left: 15%;
    margin-right: 0;
}

.value-3 {
    margin-left: 8%;
    margin-right: 8%;
}

.value-4 {
    margin-left: 12%;
    margin-right: 3%;
}

.value-card h3 {
    font-size: 26px;
    color: #2c7873;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.team-showcase {
    position: relative;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-intro-block {
    max-width: 600px;
    margin-bottom: 40px;
}

.team-intro-block h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 20px;
}

.team-intro-block p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.team-image-overlap {
    width: 85%;
    margin-left: auto;
    background-color: #e8f1f0;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 50px auto 0;
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #d4a259;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666666;
}

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

.approach-section h2 {
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 50px;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.step-offset-1 {
    margin-left: 0;
    margin-right: 20%;
}

.step-offset-2 {
    margin-left: 20%;
    margin-right: 0;
}

.step-offset-3 {
    margin-left: 10%;
    margin-right: 10%;
}

.step-offset-4 {
    margin-left: 5%;
    margin-right: 15%;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #d4a259;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 24px;
    color: #1a3a52;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

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

.cta-content-box {
    background: linear-gradient(135deg, #2c7873 0%, #1a3a52 100%);
    padding: 70px;
    text-align: center;
    border-radius: 8px;
}

.cta-content-box h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 18px;
    color: #e8f1f0;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #d4a259;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 162, 89, 0.4);
}

.services-intro-asymmetric {
    max-width: 900px;
    margin: 60px auto 60px 15%;
    padding: 0 40px;
}

.intro-text-block p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.card-style-1 {
    background-color: #ffffff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.card-style-2 {
    background-color: #ffffff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-visual {
    flex: 1;
    background-color: #e8f1f0;
}

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

.service-info {
    flex: 1.4;
    padding: 50px;
}

.service-info h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 20px;
}

.service-info h3 {
    font-size: 20px;
    color: #2c7873;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #4a4a4a;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c7873;
    font-weight: 700;
    font-size: 20px;
}

.price-detail {
    margin: 30px 0;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
    color: #d4a259;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #888888;
    font-style: italic;
}

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

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

.contact-info-block h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 22px;
    color: #2c7873;
    margin-bottom: 12px;
}

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

.email-text {
    font-weight: 600;
    color: #1a3a52;
}

.email-note,
.contact-note {
    font-size: 14px;
    color: #888888;
    margin-top: 8px;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.contact-highlight {
    background-color: #2c7873;
    padding: 35px;
    border-radius: 8px;
    color: #ffffff;
}

.contact-highlight h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-highlight p {
    font-size: 16px;
    line-height: 1.7;
}

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

.how-to-reach-section h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 40px;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.direction-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.direction-card h3 {
    font-size: 22px;
    color: #2c7873;
    margin-bottom: 15px;
}

.direction-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

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

.thanks-container {
    background-color: #ffffff;
    padding: 70px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a3a52;
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-main {
    font-size: 20px;
    color: #2c7873;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 18px;
    color: #555555;
    margin-bottom: 15px;
}

.thanks-message p {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f5f5f5;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    color: #1a3a52;
    margin-bottom: 20px;
}

.next-steps {
    list-style: none;
    text-align: left;
}

.next-steps li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c7873;
    font-weight: 700;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-primary {
    background-color: #2c7873;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

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

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 10px;
}

.email-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #1a3a52;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.legal-content h1 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 25px;
}

.legal-intro {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 4px solid #2c7873;
}

.legal-content h2 {
    font-size: 26px;
    color: #1a3a52;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c7873;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

.legal-content ul li {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c7873;
    text-decoration: none;
    font-weight: 600;
}

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

.legal-date {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888888;
    font-style: italic;
}

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

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

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

.cookies-table td {
    font-size: 15px;
    color: #555555;
}

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

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }

    .intro-irregular,
    .about-story,
    .trust-overlap,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

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

    .service-odd,
    .service-even {
        margin-left: 0;
        margin-right: 0;
    }

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

    .section-title-offset {
        margin-left: 0;
    }

    .form-section-offset {
        margin-left: auto;
        margin-right: auto;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title-offset,
    .centered-title {
        font-size: 32px;
    }

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

    .legal-content {
        padding: 30px;
    }
}
