



/* Global body style */
body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: #212529;
    margin: 0;
    padding: 0;
}

/* Responsive main container */
.main-site-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Headings */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #212529;
}

/* Paragraphs */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s;
}

    a:hover {
        color: #084298;
        text-decoration: underline;
    }

/* Buttons */
.btn {
    transition: all 0.2s ease-in-out;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

/* Forms */
input, textarea, select {
    border-radius: 0.375rem;
}

/* Utility classes */
.rounded-xl {
    border-radius: 1rem;
}

.text-center {
    text-align: center;
}

.mt-6 {
    margin-top: 4rem !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .main-site-container {
        padding: 0 0.75rem;
    }
}
