* {
    transition: 120ms ease;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

/* Header */
header {
    background-color: #052C50;
}

.sticky-nav {
    background-color: #052C50;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px;
    border-bottom: 4px solid transparent;
}

nav a:hover {
    border-color: white;
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 25%;
    height: auto;
}

/* Typography */
h2 {
    color: #1f3b64;
    text-align: center;
}

a {
    text-decoration: underline;
    color: #003688;
}

/* Content */
section {
    padding: 30px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: #e7e6e6;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.team-member {
    margin: 20px;
    max-width: 200px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.price-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 250px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #1f3b64;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
