:root {
    --primary-blue: #2c5aa0;
    --secondary-blue: #3a7bd5;
    --light-blue: #e8f0fe;
    --dark-grey: #4a5568;
    --medium-grey: #718096;
    --light-grey: #f7fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-grey);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue) !important;
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-blue);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.platform-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
    padding: 100px 0;
}

.platform-feature-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.platform-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-icon {
    background-color: var(--light-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.deployment-steps {
    position: relative;
}

.deployment-step {
    background-color: white;
    border-left: 4px solid var(--secondary-blue);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.cloud-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.cloud-card:hover {
    transform: translateY(-5px);
}

.model-badge {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 5px;
    display: inline-block;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.integration-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-3px);
}

.compliance-badge {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cta-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

footer {
    background-color: var(--dark-grey);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.logo {
    height: 40px;
}

.py-6 {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .py-6 {
        padding: 60px 0;
    }
}
