:root {
    --brand-red: rgb(218, 41, 28);
    --brand-dark: rgb(183, 28, 28);
    --text-dark: #333;
    --light-bg: #f9f9f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--text-dark);
    background-color: white;
}

header {
    background: white;
    border-bottom: 3px solid var(--brand-red);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 60px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--brand-red);
}

main {
    flex: 1;
}

.hero {
    background-color: var(--brand-red);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white {
    background-color: white;
    color: var(--brand-red);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 38px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.2s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.container {
    padding: 60px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--brand-red);
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
}

.icon-box {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--brand-red);
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.payment-badge {
    background: #f4f7f6;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    color: #555;
    border: 1px solid #ddd;
}

.info-banner {
    background-color: #fce4e4;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    color: var(--brand-red);
    margin-top: 0;
}

footer {
    background-color: var(--brand-red);
    color: white;
    padding: 50px 10% 20px;
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.legal-notice {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    opacity: 0.8;
}

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

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.cookie-modal {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.4s ease-out;
    box-sizing: border-box;
}

.cookie-modal h3 {
    font-size: 1.6rem;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}

.cookie-modal p {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.1s, opacity 0.2s;
    min-width: 120px;
}

.cookie-btn:active {
    transform: scale(0.98);
}

.btn-deny {
    background-color: #f3f4f6;
    color: #4b5563;
}

.btn-deny:hover {
    background-color: #e5e7eb;
}

.btn-accept {
    background-color: rgb(218, 41, 28);
    color: white;
}

.btn-accept:hover {
    background-color: rgb(183, 28, 28);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .cookie-modal {
        padding: 30px 20px;
    }

    .cookie-actions {
        flex-direction: column-reverse;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px;
    }
}
