
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: radial-gradient(circle, rgb(10, 31, 68), transparent);
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #FFFFFF;
}
a {
    color: #FFD700;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}
.fullscreen-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-1 {
    background-color: #0A1F44;
    color: #FFFFFF;
}
.section-2 {
    background-color: #FFFFFF;
    color: #00BFFF;
}
.primary-bg {
    background-color: #0A1F44;
    color: #FFFFFF;
}
.highlight-btn {
    background-color: #FF6F61;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.hover-btn {
    background-color: #00BFFF;
    transition: background-color 0.3s ease;
}
.hover-btn:hover {
    background-color: #FF6F61;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.image-decor {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #00BFFF;
    color: white;
}
@media (max-width: 768px) {
    .fullscreen-section {
        height: auto;
        padding: 60px 20px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}

