body {
    font-family: "Figtree", ui-sans-serif, system-ui, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #000;
}
.hero-section {
    background: #0c2340;
    color: #fff;
    padding: 60px 0;
    position: relative;
}
.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}
.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}
.hero-btn {
    background: #0c2340;
    border: none;
    padding: 12px 24px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.hero-btn:hover {
    background: #0a1b30;
}
.hero-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.25);
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    padding: 30px;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
}
.feature-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(12, 35, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}
.feature-card-icon svg {
    width: 24px;
    height: 24px;
    color: #0c2340;
}
.feature-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer {
    margin-top: 60px;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #000;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    margin-left: 8px;
}
.navbar-brand d-inline-flex {
    align-items: center;
}
.logo-svg {
    width: 32px !important;
    height: 32px !important;
}
