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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d6b;
}

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
    margin: 0 1rem;
}

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

.main-nav a {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    background: #2c5aa0;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1a3d6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.intro-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.feature-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-split.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

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

.feature-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: #2c5aa0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow:after {
    content: ' →';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover:after {
    margin-left: 1rem;
}

.services-preview {
    padding: 5rem 2rem;
    background: #fff;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 300px;
    padding: 2rem;
    background: #f9fafb;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

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

.cta-secondary {
    background: #fff;
    color: #2c5aa0;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2c5aa0;
    border-radius: 6px;
}

.cta-secondary:hover {
    background: #2c5aa0;
    color: #fff;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #1a3d6b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.testimonial-image {
    flex: 1;
}

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

.why-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.content-centered p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefits-split {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-item p {
    color: #555;
    text-align: left;
}

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.info-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

.form-container {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    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: #2c5aa0;
}

.btn-submit {
    background: #2c5aa0;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
}

.btn-submit:hover {
    background: #1a3d6b;
}

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d6b 100%);
    color: #fff;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-large {
    background: #fff;
    color: #2c5aa0;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 1.5rem 2rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-accept {
    background: #2c5aa0;
    color: #fff;
}

.btn-accept:hover {
    background: #1a3d6b;
}

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

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.3rem;
    color: #555;
}

.hero-image-right {
    flex: 1;
}

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

.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.values-image {
    flex: 1;
}

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

.values-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #f9fafb;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.mission-section {
    padding: 5rem 2rem;
    background: #2c5aa0;
    color: #fff;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-section p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-image {
    flex: 1;
}

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

.approach-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.cta-about {
    padding: 4rem 2rem;
    background: #fff;
}

.cta-content-split {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-text p {
    font-size: 1.1rem;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.page-hero-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d6b 100%);
    color: #fff;
}

.hero-services-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-services-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-services-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-main {
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    max-width: 1300px;
    margin: 3rem auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image-left {
    flex: 1;
}

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

.service-info-right,
.service-info-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.service-info-right h2,
.service-info-left h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-info-right p,
.service-info-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.service-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: #2c5aa0;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.btn-service:hover {
    background: #1a3d6b;
}

.service-image-right {
    flex: 1;
}

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

.comparison-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.form-cta-services {
    padding: 5rem 2rem;
    background: #1a3d6b;
}

.contact-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}

.contact-intro {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9fafb;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #555;
}

.contact-image {
    flex: 1;
}

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

.contact-info-section {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-details-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-card {
    flex: 1;
    padding: 3rem;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5aa0;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

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

.contact-info-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    margin-top: 2rem;
}

.contact-info-text h3:first-child {
    margin-top: 0;
}

.contact-info-text p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.islands-served {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.islands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.island-item {
    padding: 0.8rem 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #555;
}

.faq-contact {
    padding: 5rem 2rem;
    background: #fff;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d6b 100%);
}

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d6b 100%);
    color: #fff;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

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

.thanks-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.step p {
    color: #555;
    line-height: 1.7;
}

.thanks-info {
    padding: 4rem 2rem;
    background: #fff;
}

.info-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.info-left,
.info-right {
    flex: 1;
}

.info-left h3,
.info-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.info-left p,
.info-right p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-link {
    padding: 0.8rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #2c5aa0;
    font-weight: 600;
    text-align: center;
}

.thanks-link:hover {
    background: #2c5aa0;
    color: #fff;
    border-color: #2c5aa0;
}

.email-display {
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-testimonial {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.thanks-testimonial blockquote {
    border: none;
}

.thanks-testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.thanks-testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page {
    padding: 4rem 2rem;
    background: #f9fafb;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c5aa0;
}

.legal-content p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .feature-split,
    .testimonial-split,
    .form-split,
    .benefits-split,
    .page-hero-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-details-split,
    .info-split,
    .next-steps,
    .cta-content-split {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content-left h1,
    .contact-intro h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-notice {
        order: -1;
        margin: 0 0 0.5rem 0;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .feature-content,
    .form-info,
    .hero-content-left {
        padding: 2rem 1.5rem;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .services-preview h2,
    .content-centered h2 {
        font-size: 1.8rem;
    }

    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
}