/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
}

.header-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 24px;
    font-weight: bold;
}

/* Section Styles */
.section {
    padding: 50px 0;
    background-color: #000;
    color: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: #ff9900;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e68a00;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
}

.footer a {
    color: #ff9900;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
