/* ===== Global Styles ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.7;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== Container ===== */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 10px 10px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* ===== Headings ===== */
h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

h2 {
    font-size: 1.5rem;
    color: #555555;
    margin-top: 30px;
    margin-bottom: 12px;
}

/* ===== Paragraphs ===== */
p {
    margin-bottom: 18px;
    font-size: 1rem;
}

/* ===== Lists ===== */
ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

li {
    margin-bottom: 10px;
}

/* ===== Contact & Highlights ===== */
strong {
    color: #222222;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .container {
        margin: 30px 20px;
        padding: 10px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

.back-btn {
    display: inline-block;
    padding: 5px 20px;
    background-color: #8b735507;
    color: #8b7355;
    text-decoration: none;
    border-radius: 200px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #8b73552d;
    margin-bottom: 30px;
}

.back-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}