* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

header {
    background: #0d3b4c;
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.tagline {
    margin: 10px 0 24px;
    font-size: 18px;
    font-weight: 300;
}

.cta-btn {
    background: #ffb300;
    color: #222;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.cta-btn:hover {
    opacity: 0.93;
}

main section {
    padding: 50px 0;
}

h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #0d3b4c;
}

h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #17485f;
}

p, li {
    font-size: 17px;
}

ul {
    margin-top: 15px;
    padding-left: 22px;
}

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

.columns ul {
    flex: 1 1 260px;
}

.steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.steps div {
    flex: 1 1 260px;
    background: #f6f7f8;
    padding: 18px;
    border-radius: 6px;
}

.tick-list li::marker {
    content: "✔ ";
}

.map-section .map-wrapper {
    margin-top: 18px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-link {
    margin-top: 12px;
    word-break: break-all;
}

.faq {
    background: #f9fafb;
}

.faq-item {
    margin-bottom: 18px;
}

.cta-actions {
    margin-top: 20px;
}

.naked-url a {
    word-break: break-all;
}

footer {
    text-align: center;
    background: #06212b;
    padding: 30px 0;
    color: #fff;
    margin-top: 30px;
    font-size: 15px;
}

footer a {
    color: #ffb300;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
