/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */
body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.7;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Page Heading */
.container h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

/* Sections */
.container section {
    margin-bottom: 25px;
}

/* Section Headings */
.container h2 {
    margin-bottom: 10px;
    color: #1a73e8;
    font-size: 20px;
}

/* Paragraphs */
.container p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Lists */
.container ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.container li {
    margin-bottom: 6px;
}

/* Strong Text */
.container strong {
    color: #000;
}

/* Links */
.container a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.container a:hover {
    text-decoration: underline;
}

/* Cookie Consent Card */
.cookie-banner {
    position: static; /* not fixed */
    width: 100%;
    background: #f4f6f8; /* light gray card */
    color: #333;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1 1 auto;
}

.cookie-banner a {
    color: #1a73e8;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    flex-shrink: 0;
}

.cookie-banner button:hover {
    background-color: #1558b0;
}

/* Floating Feedback Button */
.feedback-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #25d366;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.feedback-btn:hover {
    background: #1ebc59;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    .container h2 {
        font-size: 18px;
    }

    .container p,
    .container li {
        font-size: 15px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner button {
        margin-top: 10px;
        margin-left: 0;
    }
}
