html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.site-header {
    background-color: #00779C;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: underline;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
}

.site-nav a:hover {
    text-decoration: underline;
}

.main-content {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-title {
    text-align: center;
    color: #00779C;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 40px 0;
    letter-spacing: 2px;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.cta-section h3 {
    color: #00779C;
    font-size: 28px;
    margin: 0 0 30px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.berichten-btn {
    background-color: #00779C;
    color: white;
}

.berichten-btn:hover {
    background-color: #005a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 156, 0.3);
}

.inloggen-btn {
    background-color: white;
    color: #00779C;
    border: 2px solid #00779C;
}

.inloggen-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 156, 0.2);
}

.features-section {
    margin: 60px 0;
}

.features-section h3 {
    color: #00779C;
    font-size: 28px;
    text-align: center;
    margin: 0 0 40px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 119, 156, 0.2);
}

.feature h4 {
    color: #00779C;
    font-size: 18px;
    margin: 0 0 10px 0;
}

.feature p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background-color: #00779C;
    height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}





