/* 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;
}

/* Section Spacing */
.container section {
    margin-bottom: 25px;
}

/* Section Headings */
.container h2 {
    margin-bottom: 10px;
    color: #1a73e8;
    font-size: 20px;
}

/* Paragraph Text */
.container p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Strong Text */
.container strong {
    color: #000;
}

/* Links */
.container a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.container a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    .container h2 {
        font-size: 18px;
    }

    .container p {
        font-size: 15px;
    }
}

/* Floating Feedback Button */
.feedback-btn {
    position: fixed;
    bottom: 70px; /* same position as other pages */
    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;
}

