body, ul, li, p, h1, h2 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar a {
    color: #222;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar a:hover {
    color: #f9c023;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ffc557;
    color: #111;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
    background: #f9c023;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #0b3b5a;
    border: 1px solid rgba(11,59,90,0.08);
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #222;
    transition: color 0.3s;
}

.social-icons img {
    width: 24px;      
    height: 24px;     
    object-fit: contain; 
    margin: 0 8px;
    transition: transform 0.2s, opacity 0.2s;
    vertical-align: middle;
}

.social-icons img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.form-field {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0 14px 0;
    border-radius: 8px;
    border: 1px solid #e3e7ee;
    background: #fafbfd;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.form-field:focus {
    box-shadow: 0 4px 14px rgba(249,192,35,0.12);
    border-color: #f9c023;
}

.form-label {
    display:block;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 6px;
    font-weight: 600;
}

.page-services {
    width: 100%;
    max-width: 1200px;
    margin: 36px auto;
    padding: 0 20px 48px;
}

.page-home {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 28px;
    min-height: calc(100vh - 140px);
    padding: 28px 5%;
}

.page-home > section {
    flex: 0 0 auto;
}

.hero,
.hero-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(90deg, #ffffff 0%, #fbfdff 100%);
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.06);
    border: 1px solid rgba(2,6,23,0.04);
}

.hero-content,
.hero-text {
    flex: 1 1 420px;
}

.hero-content h1,
.hero-text h1 {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 8px;
    color: #0b3b5a;
    font-weight: 700;
}

.hero-media img,
.hero-image img {
    width: 380px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 26px rgba(2,6,23,0.08);
    object-fit: cover;
}
    
.services-overview h2 {
    margin: 28px 0 12px;
    font-size: 1.4rem;
    color: #0b3b5a;
}

.service-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.08);
}

.service-card h3 {
    margin-bottom: 8px;
    color: #0b3b5a;
    font-size: 1.05rem;
}

.service-card p {
    color: #475569;
    font-size: 0.95rem;
}

.service-card ul {
    margin-top: 12px;
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.95rem;
}

.service-card ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
}

.process ol li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq {
    margin-top: 18px;
}

.faq dl {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 8px 20px rgba(2,6,23,0.03);
}

.faq dt {
    font-weight: 700;
    color: #0b3b5a;
    margin-top: 8px;
}

.faq dd {
    margin-left: 0;
    margin-bottom: 10px;
    color: #475569;
}

main,
main[role="main"],
.page-home {
    flex: 1 0 auto;
}

.contact-details p, .contact-details a {
    color: #475569;
    margin-bottom: 8px;
    display: block;
    word-break: break-word;
}

.contact-form .form-field { margin-bottom: 12px; }
.contact-form textarea.form-field { min-height: 140px; resize: vertical; }
.contact-details .cta-btn { display: block; width: 100%; text-align: center; }
.contact-form .cta-btn { min-width: 160px; }

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-media img,
    .hero-image img {
        max-width: 45%;
    }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-details .cta-btn { width: auto; display: inline-block; }
}

@media (max-width: 600px) {
    .hero,
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .hero-media img,
    .hero-image img {
        max-width: 100%;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card { 
        text-align: left; 
    }
}