body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #06294D;
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    background: linear-gradient(135deg, #001F3F, #0050A8);
    padding: 20px 0;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar nav a {
    color: #FFD700;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #fff;
}

.logo {
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(135deg, #001F3F, #0050A8);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary {
    background: #FFD700;
    color: #001F3F;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: #E5C100;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    color: #fff;
    border-color: #fff;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background: linear-gradient(135deg, #F0F8FF, #DDEEFF);
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #001F3F;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FFD700;
    margin: 20px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: #001F3F;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer {
    background: linear-gradient(135deg, #001F3F, #0050A8);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    font-size: 35px;
    padding: 15px 20px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}