body {
    background-color: #114467;
    color: #d3c943;
}

h1, p {
    margin-bottom: 20px;
}

.container {
    margin-top: 20px;
}

.btn-primary {
    background-color: #719cdb;
    border-color: #719cdb;
}

.btn-primary:hover {
    background-color: #5a87c1;
    border-color: #5a87c1;
}

.secondary {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-align: center;
}

/* GDPR Footer Styles */
.gdpr-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a5a7a;
    color: #d3c943;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    border-top: 2px solid #719cdb;
}

.gdpr-footer.show {
    display: block;
}

.gdpr-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.gdpr-footer-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.gdpr-footer-text a {
    color: #719cdb;
    text-decoration: underline;
}

.gdpr-footer-text a:hover {
    color: #5a87c1;
    text-decoration: none;
}

.gdpr-footer-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gdpr-footer .btn {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
}

.gdpr-footer .btn-accept {
    background-color: #719cdb;
    border-color: #719cdb;
    color: white;
}

.gdpr-footer .btn-accept:hover {
    background-color: #5a87c1;
    border-color: #5a87c1;
}

.gdpr-footer .btn-close {
    background: none;
    border: 1px solid #d3c943;
    color: #d3c943;
    cursor: pointer;
}

.gdpr-footer .btn-close:hover {
    background-color: #d3c943;
    color: #1a5a7a;
}

/* Service Button Styles */
.service-btn {
    width: 200px;
}

@media (max-width: 768px) {
    .gdpr-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .gdpr-footer-actions {
        justify-content: center;
    }
}
