﻿/* Content Wrapper */
.content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    z-index: 1;
}

/* Background image with 30% transparency */
.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

/* Headings */
.content h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #222;
}

.content h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

/* Paragraphs */
.content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

/* Lists */
.content ul,
.content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content li {
    margin-bottom: 8px;
}

/* Images */
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Links */
.content a {
    color: #0066cc;
    text-decoration: underline;
}

.content a:hover {
    color: #003366;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .content {
        padding: 30px 15px;
    }

    .content h1 {
        font-size: 1.8em;
    }

    .content h2 {
        font-size: 1.4em;
    }
}
