/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
    text-align: center;
}

/* Intro Section */
.intro {
    background-color: #e9f1f7;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003366;
    text-align: center;
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(33.33% - 20px);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #003366;
}

.service-card p {
    color: #444;
}

/* Competitive Edge Section */
.competitive-edge {
    background-color: #f0f4f8;
}

.edge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.edge-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    flex: 1 1 calc(50% - 20px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.edge-card h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 10px;
}

.edge-card p {
    color: #555;
}

/* CTA Section */
.cta-section {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-highlight {
    font-weight: bold;
    color: #ffeb3b;
}

.cta-button {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    background-color: #ffeb3b;
    color: #003366;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #fdd835;
}

/* Footer */
.footer {
    background-color: #003366;
    color: #fff;
    padding: 30px 20px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
}

.footer-brand p {
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .edge-card {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

    .intro-content h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .intro-content p,
    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
    }

    .edge-card {
        padding: 20px;
    }
}