/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #0d47a1;
    font-size: 42px;
}

header h3 {
    color: #555;
    margin-top: 10px;
}

section {
    margin-top: 30px;
}

h2 {
    color: #1565c0;
    border-bottom: 2px solid #1565c0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

#counter {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
} */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

/* Visitor Counter */

#visitor-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    color: #1565c0;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    font-size: 16px;
    z-index: 1000;
}

#counter {
    color: #2e7d32;
    font-weight: bold;
}

/* Main Container */

.container {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #0d47a1;
    font-size: 42px;
    margin-bottom: 10px;
}

header p {
    margin-top: 8px;
}

header a {
    text-decoration: none;
    color: #1565c0;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

/* Sections */

section {
    margin-top: 35px;
}

h2 {
    color: #1565c0;
    border-bottom: 2px solid #1565c0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

h3 {
    color: #0d47a1;
    margin-bottom: 8px;
    margin-top: 10px;
}

/* Lists */

ul {
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Links */

a {
    color: #1565c0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Education Paragraphs */

section p {
    margin-bottom: 10px;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .container {
        margin: 15px;
        padding: 25px;
    }

    header h1 {
        font-size: 32px;
    }

    #visitor-box {
        top: 10px;
        right: 10px;
        font-size: 14px;
        padding: 10px 12px;
    }
}