body {
    background-color: #fcfcfc;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(18, 38, 63, 0.391), rgba(18, 38, 63, 0.227)),
                url('../images/archipielago.jpg') no-repeat center center/cover;
    color: white;
    padding: 160px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Section Split */
.about-section {
    padding: 25px;
    display: flex;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.about-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.about-content {
    padding: 25px;
}

.about-content h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.button-row {
    margin-top: 15px;
}

/* Teaser Section for Refit */
.refit-teaser {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.refit-teaser h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.refit-teaser p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #666;
}

.btn {
    display: inline-block;
    background-color: var(--ocean-blue);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: background 0.2s;
}

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

/* Mobile responsive layout */
@media (max-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}