
    .section {
        padding: 80px 0;
    }
    .section-header {
        text-align: center;
        margin: 0 auto 40px;
    }
    
    .section-title {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #434A54;
    }
    
    .section-description {
        font-size: 18px;
        color: #4B5563;
        line-height: 1.6;
    }
    
    .database-container {
        background: #FFFFFF;
        border-radius: 20px;
        padding: 48px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        margin-top: 40px;
        border: 1px solid #E5E7EB;
    }
    
    .database-header {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .database-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-right: 16px;
    }
    
    .database-title {
        font-size: 24px;
        font-weight: 600;
        color: #434A54;
    }
    
    .database-description {
        font-size: 16px;
        line-height: 1.6;
        color: #4B5563;
        margin-bottom: 32px;
    }
    
    .database-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .database-card {
        padding: 24px;
        border-radius: 20px;
        transition: all 0.3s ease;
        border-left: 10px solid;
        height: 100%;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .database-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .database-name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #111827;
    }
    
    .database-info {
        font-size: 14px;
        line-height: 1.5;
        color: #4B5563;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .database-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .database-container {
            padding: 40px;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 30px;
        }
        
        .section-description {
            font-size: 16px;
        }
        
        .database-title {
            font-size: 22px;
        }
    }
    
    @media (max-width: 576px) {
        .database-grid {
            grid-template-columns: 1fr;
        }
        
        .database-container {
            padding: 30px;
        }
        
        .database-header {
            flex-direction: column;
            text-align: center;
        }
        
        .database-icon {
            margin-right: 0;
            margin-bottom: 16px;
        }
    }