body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
}

.site-title {
    font-weight: bold;
    font-size: 1.1em;
}

nav a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-size: 0.9em;
}

.btn-black {
    background-color: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 2px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.btn-black:hover {
    background-color: #333;
    text-decoration: none;
}

main {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

h3 {
    font-size: 1em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 1.5em;
    font-size: 1.05em;
}

.cta-box {
    background-color: #222;
    color: #fff;
    padding: 15px 20px;
    margin: 30px 0;
    text-align: left;
}

.cta-box p {
    margin: 0;
    font-weight: bold;
    font-size: 1em;
}

.cta-box a {
    color: #fff;
    text-decoration: none;
}

.image-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.image-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    font-size: 0.8em;
    color: #666;
}

.action-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.9em;
}

.action-text {
    margin-left: 10px;
}

.comments-section {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 50px;
}

.comment-box textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-family: inherit;
}

.btn-comment {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 5px 15px;
    cursor: pointer;
}

footer {
    background-color: #f2f2f2;
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    font-size: 0.9em;
    margin-top: 80px;
}

.footer-column {
    flex: 1;
    text-align: center;
}

.footer-column h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.1em;
}

.footer-column p {
    font-size: 0.9em;
    color: #444;
    line-height: 1.6;
}

.footer-column a {
    color: #444;
    text-decoration: none;
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d32f2f;
    /* Red color for urgency/attention */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.2s;
    z-index: 1000;
}

.floating-cta:hover {
    transform: scale(1.05);
    background-color: #b71c1c;
}

@media (max-width: 600px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
        text-align: center;
        border-radius: 30px;
    }
}