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

/* Global Styles */
html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-image: url('/assets/image/Bg-Hd.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #757575;
}

/* Navbar Brand Styles */
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 1.4rem;
    text-decoration: none;
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

.content {
    flex: 1 0 auto;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

/* Spacer Section */
.spacer-section {
    width: 100%;
    background-color: #cbd9e7;
    min-height: 200px; 
    margin-top: auto;
}

/* Footer Styles */
footer {
    border-top: 1px solid #e0e0e0;
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    text-align: center;
    flex-shrink: 0;
}

footer a {
    color: #333;
    text-decoration: underline;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
}

footer .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

footer .text-md-end {
    text-align: right;
}

@media (max-width: 768px) {
    footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    footer .text-md-end {
        text-align: center;
        margin-top: 10px;
    }
} 