body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #222;
}

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

.header {
    background: #003366;
    color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}
.logo i {
    color: #00bfff;
    font-size: 2.2rem;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover {
    color: #00bfff;
}

.hero {
    background: linear-gradient(120deg, #00bfff 0%, #003366 100%);
    color: #fff;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.cta-buttons .btn {
    margin: 0 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: #003366;
    color: #fff;
}
.btn-primary:hover {
    background: #00bfff;
    color: #003366;
}
.btn-secondary {
    background: #fff;
    color: #003366;
    border: 2px solid #003366;
}
.btn-secondary:hover {
    background: #003366;
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #003366;
    border: 2px solid #003366;
}
.btn-outline:hover {
    background: #003366;
    color: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #003366;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.services {
    padding: 3rem 0;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}
.service-card i {
    font-size: 2rem;
    color: #00bfff;
    margin-bottom: 0.5rem;
}

.why-us {
    background: #e6f4fa;
    padding: 3rem 0;
}
.features-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1rem;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
}
.feature i {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 0.5rem;
}

.packages {
    padding: 3rem 0;
}
.packages-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.package-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
    border: 2px solid #e6f4fa;
    transition: border 0.2s;
}
.package-card.featured {
    border: 2px solid #00bfff;
}
.package-header h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 0.2rem;
}
.team-size {
    color: #00bfff;
    font-weight: 500;
    margin-bottom: 1rem;
}
.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.package-features li {
    margin-bottom: 0.5rem;
    color: #333;
}

.process {
    background: #f0f6fa;
    padding: 3rem 0;
}
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 120px;
}
.step-number {
    background: #00bfff;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    font-size: 1.2rem;
}
.step-arrow i {
    font-size: 1.5rem;
    color: #00bfff;
}

.contact {
    padding: 3rem 0 2rem 0;
    background: #fff;
}
.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}
.contact-item a {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
}
.contact-item a:hover {
    text-decoration: underline;
}

.footer {
    background: #003366;
    color: #fff;
    padding: 2rem 0 1rem 0;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-section {
    flex: 1 1 180px;
    min-width: 180px;
}
.footer-section h4 {
    margin-bottom: 0.7rem;
    color: #00bfff;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer .logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    color: #b3d1ea;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .footer-content, .services-grid, .features-grid, .packages-grid, .process-steps, .contact-info {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        min-width: 0;
        width: 100%;
        margin-bottom: 1.5rem;
    }
}